mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 17:38:07 +01:00
Fix non-grouped notifications not loading on page load (#31514)
This commit is contained in:
parent
f91403ccaa
commit
9ba7c90151
1 changed files with 1 additions and 1 deletions
|
@ -13,6 +13,6 @@ export const initializeNotifications = createAppAsyncThunk(
|
||||||
) as boolean;
|
) as boolean;
|
||||||
|
|
||||||
if (enableBeta) void dispatch(fetchNotifications());
|
if (enableBeta) void dispatch(fetchNotifications());
|
||||||
else void dispatch(expandNotifications());
|
else void dispatch(expandNotifications({}));
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue