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/screens/Settings/ContentAndMediaSettings.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/screens/Settings/ContentAndMediaSettings.tsx')
-rw-r--r-- | src/screens/Settings/ContentAndMediaSettings.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/screens/Settings/ContentAndMediaSettings.tsx b/src/screens/Settings/ContentAndMediaSettings.tsx index 57b86fb2b..6fa90b1e2 100644 --- a/src/screens/Settings/ContentAndMediaSettings.tsx +++ b/src/screens/Settings/ContentAndMediaSettings.tsx @@ -18,6 +18,7 @@ import {useTrendingConfig} from '#/state/trending-config' import * as SettingsList from '#/screens/Settings/components/SettingsList' import * as Toggle from '#/components/forms/Toggle' import {Bubbles_Stroke2_Corner2_Rounded as BubblesIcon} from '#/components/icons/Bubble' +import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' import {Hashtag_Stroke2_Corner0_Rounded as HashtagIcon} from '#/components/icons/Hashtag' import {Home_Stroke2_Corner2_Rounded as HomeIcon} from '#/components/icons/Home' import {Macintosh_Stroke2_Corner2_Rounded as MacintoshIcon} from '#/components/icons/Macintosh' @@ -86,6 +87,14 @@ export function ContentAndMediaSettingsScreen({}: Props) { <Trans>External media</Trans> </SettingsList.ItemText> </SettingsList.LinkItem> + <SettingsList.LinkItem + to="/settings/interests" + label={_(msg`Your interests`)}> + <SettingsList.ItemIcon icon={CircleInfo} /> + <SettingsList.ItemText> + <Trans>Your interests</Trans> + </SettingsList.ItemText> + </SettingsList.LinkItem> <SettingsList.Divider /> {isNative && ( <Toggle.Item |