diff options
Diffstat (limited to 'src/view/screens/Notifications.tsx')
-rw-r--r-- | src/view/screens/Notifications.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index 35591f270..70ab32db0 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -23,7 +23,7 @@ import { import {truncateAndInvalidate} from '#/state/queries/util' import {useSetMinimalShellMode} from '#/state/shell' import {useComposerControls} from '#/state/shell/composer' -import {Feed} from '#/view/com/notifications/Feed' +import {NotificationFeed} from '#/view/com/notifications/NotificationFeed' import {FAB} from '#/view/com/util/fab/FAB' import {ListMethods} from '#/view/com/util/List' import {LoadLatestBtn} from '#/view/com/util/load-latest/LoadLatestBtn' @@ -156,7 +156,7 @@ export function NotificationsScreen({route: {params}}: Props) { </Layout.Header.Outer> <MainScrollProvider> - <Feed + <NotificationFeed onScrolledDownChange={setIsScrolledDown} scrollElRef={scrollElRef} overridePriorityNotifications={params?.show === 'all'} |