diff --git a/apps/mail/lib/flags.ts b/apps/mail/lib/flags.ts index 97e8143ee..07ca4de31 100644 --- a/apps/mail/lib/flags.ts +++ b/apps/mail/lib/flags.ts @@ -12,4 +12,7 @@ export const createFeatureGate = (key: string) => flag({ key, adapter: statsigAdapter.featureGate((gate) => gate.value, { exposureLogging: true }), identify, + decide() { + return Math.random() > 0.1; + }, }); \ No newline at end of file