From d4a019d06cc894b9a4be925b5328010851013e0d Mon Sep 17 00:00:00 2001 From: Jakz Date: Fri, 19 Apr 2024 23:19:55 +0800 Subject: [PATCH] restrict ff --- apps/mobile/src/utils/isFeatureEnabled.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/mobile/src/utils/isFeatureEnabled.tsx b/apps/mobile/src/utils/isFeatureEnabled.tsx index efbe88d4d9..1d46d2362c 100644 --- a/apps/mobile/src/utils/isFeatureEnabled.tsx +++ b/apps/mobile/src/utils/isFeatureEnabled.tsx @@ -20,13 +20,13 @@ const ROLE_FLAGS: Record> = { GALLERY_EDITOR: true, }, BETA_TESTER: { - GALLERY_EDITOR: true, + GALLERY_EDITOR: false, }, EARLY_ACCESS: { - GALLERY_EDITOR: true, + GALLERY_EDITOR: false, }, EMAIL_TESTER: { - GALLERY_EDITOR: true, + GALLERY_EDITOR: false, }, };