diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx
index 5818cc6fc7..65413689a6 100644
--- a/src/view/screens/Notifications.tsx
+++ b/src/view/screens/Notifications.tsx
@@ -294,14 +294,19 @@ function DisabledNotificationsWarning({active}: {active: boolean}) {
if (!data) return null
- return (
-
-
-
- You have completely disabled reply, quote, and mention notifications,
- so this tab will no longer update.
-
-
-
- )
+ if (!data.reply.list && !data.quote.list && !data.mention.list) {
+ // mention tab notifications are disabled
+ return (
+
+
+
+ You have completely disabled reply, quote, and mention
+ notifications, so this tab will no longer update.
+
+
+
+ )
+ }
+
+ return null
}