about summary refs log tree commit diff
path: root/src/screens/Settings/NotificationSettings/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/screens/Settings/NotificationSettings/index.tsx')
-rw-r--r--src/screens/Settings/NotificationSettings/index.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screens/Settings/NotificationSettings/index.tsx b/src/screens/Settings/NotificationSettings/index.tsx
index ec396d29a..800493575 100644
--- a/src/screens/Settings/NotificationSettings/index.tsx
+++ b/src/screens/Settings/NotificationSettings/index.tsx
@@ -260,8 +260,8 @@ function SettingPreview({
   if (!preference) {
     return null
   } else {
-    if ('filter' in preference) {
-      if (preference.filter === 'all') {
+    if ('include' in preference) {
+      if (preference.include === 'all') {
         if (preference.list && preference.push) {
           return _(msg`In-app, Push, Everyone`)
         } else if (preference.list) {
@@ -269,7 +269,7 @@ function SettingPreview({
         } else if (preference.push) {
           return _(msg`Push, Everyone`)
         }
-      } else if (preference.filter === 'follows') {
+      } else if (preference.include === 'follows') {
         if (preference.list && preference.push) {
           return _(msg`In-app, Push, People you follow`)
         } else if (preference.list) {