From a203f43142532c8ed99edce011e0a26d3f493144 Mon Sep 17 00:00:00 2001 From: Ian Philips Date: Tue, 19 Jul 2022 09:29:12 -0600 Subject: [PATCH] Cache all notifs --- web/pages/notifications.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/notifications.tsx b/web/pages/notifications.tsx index 7500c2a8..084b143c 100644 --- a/web/pages/notifications.tsx +++ b/web/pages/notifications.tsx @@ -177,7 +177,7 @@ function NotificationsList(props: { const local = safeLocalStorage() local?.setItem( 'notification-groups', - JSON.stringify(maxNotificationsToShow) + JSON.stringify(allGroupedNotifications) ) return maxNotificationsToShow }, [allGroupedNotifications, page])