my fork of the bluesky client

Fix web build by removing app icon settings (#6784)

authored by danabra.mov and committed by GitHub 47cbdfec 763a5d5a

Changed files
+5 -1
src
+3
src/screens/Settings/AppIconSettings.web.tsx
··· 1 + export function AppIconSettingsScreen() { 2 + throw new Error('Not supported on web') 3 + }
+2 -1
src/screens/Settings/AppearanceSettings.tsx
··· 10 10 11 11 import {DISCOVER_DEBUG_DIDS} from '#/lib/constants' 12 12 import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' 13 + import {isNative} from '#/platform/detection' 13 14 import {useSession} from '#/state/session' 14 15 import {useSetThemePrefs, useThemePrefs} from '#/state/shell' 15 16 import {Logo} from '#/view/icons/Logo' ··· 169 170 onChange={onChangeFontScale} 170 171 /> 171 172 172 - {DISCOVER_DEBUG_DIDS[currentAccount?.did ?? ''] && ( 173 + {isNative && DISCOVER_DEBUG_DIDS[currentAccount?.did ?? ''] && ( 173 174 <> 174 175 <SettingsList.Divider /> 175 176