diff --git a/src/utils/feature-flags.ts b/src/utils/feature-flags.ts index 8d51f4e..88994ff 100644 --- a/src/utils/feature-flags.ts +++ b/src/utils/feature-flags.ts @@ -2,5 +2,5 @@ export type Features = 'Send to Email' | 'Hide Images'; export const featureFlags: Record = { 'Send to Email': false, - 'Hide Images': true, + 'Hide Images': false, };