From 9ba7c90151463a6e4f7952317253fe8c113e9b0a Mon Sep 17 00:00:00 2001 From: Claire Date: Tue, 20 Aug 2024 18:18:33 +0200 Subject: [PATCH] Fix non-grouped notifications not loading on page load (#31514) --- app/javascript/mastodon/actions/notifications_migration.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/mastodon/actions/notifications_migration.tsx b/app/javascript/mastodon/actions/notifications_migration.tsx index b453aed6ef..c245dc7565 100644 --- a/app/javascript/mastodon/actions/notifications_migration.tsx +++ b/app/javascript/mastodon/actions/notifications_migration.tsx @@ -13,6 +13,6 @@ export const initializeNotifications = createAppAsyncThunk( ) as boolean; if (enableBeta) void dispatch(fetchNotifications()); - else void dispatch(expandNotifications()); + else void dispatch(expandNotifications({})); }, );