diff options
author | Eric Bailey <git@esb.lol> | 2025-04-04 10:26:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-04 10:26:48 -0500 |
commit | 148bfa803d3116dfaf6513ca947e585d8d3bfc78 (patch) | |
tree | d5a4a541b7dfd3f67acc91c50fc7eb3f71d928b3 /src/lib/routes | |
parent | 0004e27427adb224427b50375625830abc346bd0 (diff) | |
download | voidsky-148bfa803d3116dfaf6513ca947e585d8d3bfc78.tar.zst |
Content interests (#8114)
* Content prefs screen * Handle debounce, rename * Fix format * Let's just use interests * Reuse hook
Diffstat (limited to 'src/lib/routes')
-rw-r--r-- | src/lib/routes/types.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 0e38c9262..658b68db8 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -1,7 +1,7 @@ -import {NavigationState, PartialState} from '@react-navigation/native' -import type {NativeStackNavigationProp} from '@react-navigation/native-stack' +import {type NavigationState, type PartialState} from '@react-navigation/native' +import {type NativeStackNavigationProp} from '@react-navigation/native-stack' -import {VideoFeedSourceContext} from '#/screens/VideoFeed/types' +import {type VideoFeedSourceContext} from '#/screens/VideoFeed/types' export type {NativeStackScreenProps} from '@react-navigation/native-stack' @@ -51,6 +51,7 @@ export type CommonNavigatorParams = { AccountSettings: undefined PrivacyAndSecuritySettings: undefined ContentAndMediaSettings: undefined + SettingsInterests: undefined AboutSettings: undefined AppIconSettings: undefined Search: {q?: string} |