diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-08-24 01:18:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-24 01:18:02 +0300 |
commit | ce2604d0e992618fcc590ccfc836e4b5b9bb8962 (patch) | |
tree | a941f55bd00d4af2873cf2713951a1df1a1311c1 /src/screens/Settings/AppearanceSettings.tsx | |
parent | c28195067f27fb02de1ae471c4f86aab660b45ce (diff) | |
download | voidsky-ce2604d0e992618fcc590ccfc836e4b5b9bb8962.tar.zst |
Update `@mozzius/expo-dynamic-app-icon` (#8834)
Diffstat (limited to 'src/screens/Settings/AppearanceSettings.tsx')
-rw-r--r-- | src/screens/Settings/AppearanceSettings.tsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/screens/Settings/AppearanceSettings.tsx b/src/screens/Settings/AppearanceSettings.tsx index 492d6d172..5d597ff8e 100644 --- a/src/screens/Settings/AppearanceSettings.tsx +++ b/src/screens/Settings/AppearanceSettings.tsx @@ -12,7 +12,6 @@ import { type CommonNavigatorParams, type NativeStackScreenProps, } from '#/lib/routes/types' -import {useGate} from '#/lib/statsig/statsig' import {isNative} from '#/platform/detection' import {useSetThemePrefs, useThemePrefs} from '#/state/shell' import {SettingsListItem as AppIconSettingsListItem} from '#/screens/Settings/AppIconSettings/SettingsListItem' @@ -32,7 +31,6 @@ 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() @@ -180,7 +178,7 @@ export function AppearanceSettingsScreen({}: Props) { onChange={onChangeFontScale} /> - {isNative && IS_INTERNAL && gate('debug_subscriptions') && ( + {isNative && IS_INTERNAL && ( <> <SettingsList.Divider /> <AppIconSettingsListItem /> |