Fix non-grouped notifications not loading on page load (#31514)

pull/2818/head
Claire 2024-08-20 18:18:33 +02:00 committed by GitHub
parent f91403ccaa
commit 9ba7c90151
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ export const initializeNotifications = createAppAsyncThunk(
) as boolean;
if (enableBeta) void dispatch(fetchNotifications());
else void dispatch(expandNotifications());
else void dispatch(expandNotifications({}));
},
);