diff options
author | dan <dan.abramov@gmail.com> | 2024-12-16 22:26:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-16 22:26:40 +0000 |
commit | de97c07c63ba4a32a5b5635075a3f9fea7831ff1 (patch) | |
tree | 376b8399c169ce2d96be5f841c753e68d7b34d37 /src/screens/Settings/AppearanceSettings.tsx | |
parent | c339dc5b05282ba917bed9d02c914453cf38d437 (diff) | |
download | voidsky-de97c07c63ba4a32a5b5635075a3f9fea7831ff1.tar.zst |
Adjust gates (#7132)
* Remove dead gate * Adjust gates * No need to disable exposures
Diffstat (limited to 'src/screens/Settings/AppearanceSettings.tsx')
-rw-r--r-- | src/screens/Settings/AppearanceSettings.tsx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/screens/Settings/AppearanceSettings.tsx b/src/screens/Settings/AppearanceSettings.tsx index 81ac59105..4a8a61cd2 100644 --- a/src/screens/Settings/AppearanceSettings.tsx +++ b/src/screens/Settings/AppearanceSettings.tsx @@ -8,10 +8,10 @@ import Animated, { import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {DISCOVER_DEBUG_DIDS} from '#/lib/constants' +import {IS_INTERNAL} from '#/lib/app-info' import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' +import {useGate} from '#/lib/statsig/statsig' import {isNative} from '#/platform/detection' -import {useSession} from '#/state/session' import {useSetThemePrefs, useThemePrefs} from '#/state/shell' import {SettingsListItem as AppIconSettingsListItem} from '#/screens/Settings/AppIconSettings/SettingsListItem' import {atoms as a, native, useAlf, useTheme} from '#/alf' @@ -29,6 +29,7 @@ type Props = NativeStackScreenProps<CommonNavigatorParams, 'AppearanceSettings'> export function AppearanceSettingsScreen({}: Props) { const {_} = useLingui() const {fonts} = useAlf() + const gate = useGate() const {colorMode, darkTheme} = useThemePrefs() const {setColorMode, setDarkTheme} = useSetThemePrefs() @@ -74,8 +75,6 @@ export function AppearanceSettingsScreen({}: Props) { [fonts], ) - const {currentAccount} = useSession() - return ( <LayoutAnimationConfig skipExiting skipEntering> <Layout.Screen testID="preferencesThreadsScreen"> @@ -178,7 +177,7 @@ export function AppearanceSettingsScreen({}: Props) { onChange={onChangeFontScale} /> - {isNative && DISCOVER_DEBUG_DIDS[currentAccount?.did ?? ''] && ( + {isNative && IS_INTERNAL && gate('debug_subscriptions') && ( <> <SettingsList.Divider /> <AppIconSettingsListItem /> |