diff options
Diffstat (limited to 'src/screens/Settings/NotificationSettings/index.tsx')
-rw-r--r-- | src/screens/Settings/NotificationSettings/index.tsx | 6 |
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) { |