Bluesky app fork with some witchin' additions 💫

import fix

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