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
74b74639
55e2cb5d
+2
-5
1 changed file
expand all
collapse all
unified
split
src
screens
Settings
Settings.tsx
+2
-5
src/screens/Settings/Settings.tsx
reviewed
···
5
5
import {msg, Trans} from '@lingui/macro'
6
6
import {useLingui} from '@lingui/react'
7
7
import {useNavigation} from '@react-navigation/native'
8
8
-
import type * as nativeStack from '@react-navigation/native-stack'
8
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
79
-
type Props = nativeStack.NativeStackScreenProps<
80
80
-
CommonNavigatorParams,
81
81
-
'Settings'
82
82
-
>
79
79
+
type Props = NativeStackScreenProps<CommonNavigatorParams, 'Settings'>
83
80
export function SettingsScreen({}: Props) {
84
81
const ax = useAnalytics()
85
82
const {_} = useLingui()