Bluesky app fork with some witchin' additions 💫

import fix

+2 -5
+2 -5
src/screens/Settings/Settings.tsx
··· 6 6 import {useLingui} from '@lingui/react' 7 7 import {Trans} from '@lingui/react/macro' 8 8 import {useNavigation} from '@react-navigation/native' 9 - import type * as nativeStack from '@react-navigation/native-stack' 9 + import {type NativeStackScreenProps} from '@react-navigation/native-stack' 10 10 11 11 import {HELP_DESK_URL} from '#/lib/constants' 12 12 import {useAccountSwitcher} from '#/lib/hooks/useAccountSwitcher' ··· 77 77 import {device, useStorage} from '#/storage' 78 78 import {useActivitySubscriptionsNudged} from '#/storage/hooks/activity-subscriptions-nudged' 79 79 80 - type Props = nativeStack.NativeStackScreenProps< 81 - CommonNavigatorParams, 82 - 'Settings' 83 - > 80 + type Props = NativeStackScreenProps<CommonNavigatorParams, 'Settings'> 84 81 export function SettingsScreen({}: Props) { 85 82 const ax = useAnalytics() 86 83 const {_} = useLingui()