From 1d3cc8f7bf43d5df124e6a8072d63bda4fe2e2a9 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 20 Jun 2025 14:28:01 -0500 Subject: [PATCH] Add link to settings --- src/view/screens/Notifications.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index 2a4ec4984c..efad2c665e 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -37,7 +37,7 @@ import {Admonition} from '#/components/Admonition' import {ButtonIcon} from '#/components/Button' import {SettingsGear2_Stroke2_Corner0_Rounded as SettingsIcon} from '#/components/icons/SettingsGear2' import * as Layout from '#/components/Layout' -import {Link} from '#/components/Link' +import {InlineLinkText, Link} from '#/components/Link' import {Loader} from '#/components/Loader' // We don't currently persist this across reloads since @@ -285,6 +285,7 @@ function NotificationsTab({ function DisabledNotificationsWarning({active}: {active: boolean}) { const t = useTheme() + const {_} = useLingui() const {data} = useNotificationSettingsQuery({enabled: active}) if (!data) return null @@ -296,7 +297,14 @@ function DisabledNotificationsWarning({active}: {active: boolean}) { You have completely disabled reply, quote, and mention - notifications, so this tab will no longer update. + notifications, so this tab will no longer update. To adjust this, + visit your{' '} + + notification settings + + .