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/Navigation.tsx | |
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/Navigation.tsx')
-rw-r--r-- | src/Navigation.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 420a49d4c..d89d45919 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -83,6 +83,7 @@ import {SearchScreen} from '#/screens/Search' import {AppearanceSettingsScreen} from '#/screens/Settings/AppearanceSettings' import {AppIconSettingsScreen} from '#/screens/Settings/AppIconSettings' import {NotificationSettingsScreen} from '#/screens/Settings/NotificationSettings' +import {SettingsInterests} from '#/screens/Settings/SettingsInterests' import { StarterPackScreen, StarterPackScreenShort, @@ -376,6 +377,14 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { }} /> <Stack.Screen + name="SettingsInterests" + getComponent={() => SettingsInterests} + options={{ + title: title(msg`Your interests`), + requireAuth: true, + }} + /> + <Stack.Screen name="AboutSettings" getComponent={() => AboutSettingsScreen} options={{ |