diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-07-02 00:36:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-01 14:36:04 -0700 |
commit | bc072570d27e1f397406daea355570f5aec95647 (patch) | |
tree | 0d698c0bababd9b5e221df763a1ab15744ebdb71 /src/screens/Settings/NotificationSettings/index.tsx | |
parent | 8f9a8ddce022e328b07b793c3f1500e1c423ef73 (diff) | |
download | voidsky-bc072570d27e1f397406daea355570f5aec95647.tar.zst |
Activity notification settings (#8485)
Co-authored-by: Eric Bailey <git@esb.lol> Co-authored-by: Samuel Newman <mozzius@protonmail.com> Co-authored-by: hailey <me@haileyok.com>
Diffstat (limited to 'src/screens/Settings/NotificationSettings/index.tsx')
-rw-r--r-- | src/screens/Settings/NotificationSettings/index.tsx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/screens/Settings/NotificationSettings/index.tsx b/src/screens/Settings/NotificationSettings/index.tsx index 800493575..df7c9a35b 100644 --- a/src/screens/Settings/NotificationSettings/index.tsx +++ b/src/screens/Settings/NotificationSettings/index.tsx @@ -16,7 +16,7 @@ import {useNotificationSettingsQuery} from '#/state/queries/notifications/settin import {atoms as a} from '#/alf' import {Admonition} from '#/components/Admonition' import {At_Stroke2_Corner2_Rounded as AtIcon} from '#/components/icons/At' -// import {BellRinging_Stroke2_Corner0_Rounded as BellRingingIcon} from '#/components/icons/BellRinging' +import {BellRinging_Stroke2_Corner0_Rounded as BellRingingIcon} from '#/components/icons/BellRinging' import {Bubble_Stroke2_Corner2_Rounded as BubbleIcon} from '#/components/icons/Bubble' import {Haptic_Stroke2_Corner2_Rounded as HapticIcon} from '#/components/icons/Haptic' import { @@ -183,20 +183,19 @@ export function NotificationSettingsScreen({}: Props) { showSkeleton={!settings} /> </SettingsList.LinkItem> - {/* <SettingsList.LinkItem + <SettingsList.LinkItem label={_(msg`Settings for activity alerts`)} to={{screen: 'ActivityNotificationSettings'}} contentContainerStyle={[a.align_start]}> <SettingsList.ItemIcon icon={BellRingingIcon} /> - <ItemTextWithSubtitle - titleText={<Trans>Activity alerts</Trans>} + titleText={<Trans>Activity from others</Trans>} subtitleText={ <SettingPreview preference={settings?.subscribedPost} /> } showSkeleton={!settings} /> - </SettingsList.LinkItem> */} + </SettingsList.LinkItem> <SettingsList.LinkItem label={_( msg`Settings for notifications for likes of your reposts`, |