From dc9b9a887b3ea97c6f1544da5e745986ed9559f4 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 4 May 2026 18:24:25 +0100 Subject: [PATCH] [Chat] Reenable the gc gate (#10406) --- src/screens/Messages/Conversation.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/screens/Messages/Conversation.tsx b/src/screens/Messages/Conversation.tsx index 9fe2fdee8a..450a7104e0 100644 --- a/src/screens/Messages/Conversation.tsx +++ b/src/screens/Messages/Conversation.tsx @@ -49,7 +49,7 @@ import {Loader} from '#/components/Loader' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' -import {IS_LIQUID_GLASS, IS_WEB} from '#/env' +import {IS_INTERNAL, IS_LIQUID_GLASS, IS_WEB} from '#/env' import {ChatDisabled} from './components/ChatDisabled' type Props = NativeStackScreenProps< @@ -295,12 +295,11 @@ function InnerReady({ /> )} - {/*{!IS_INTERNAL && convo?.kind === 'group' && }*/} + {!IS_INTERNAL && convo?.kind === 'group' && } ) } -// eslint-disable-next-line @typescript-eslint/no-unused-vars function GroupChatGate() { const {t: l} = useLingui() const ax = useAnalytics()