tangled
alpha
login
or
join now
jeanmachine.dev
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
0
fork
atom
Bluesky app fork with some witchin' additions 💫
0
fork
atom
overview
issues
pulls
pipelines
import fix
jeanmachine.dev
3 weeks ago
c9b5884f
8e3bc615
+2
-5
1 changed file
expand all
collapse all
unified
split
src
screens
Settings
Settings.tsx
+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
9
-
import type * as nativeStack from '@react-navigation/native-stack'
9
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
80
-
type Props = nativeStack.NativeStackScreenProps<
81
81
-
CommonNavigatorParams,
82
82
-
'Settings'
83
83
-
>
80
80
+
type Props = NativeStackScreenProps<CommonNavigatorParams, 'Settings'>
84
81
export function SettingsScreen({}: Props) {
85
82
const ax = useAnalytics()
86
83
const {_} = useLingui()