1
0
mirror of https://github.com/funamitech/mastodon synced 2025-01-19 08:13:24 +09:00

[Glitch] Fix non-grouped notifications not loading on page load

Port 9ba7c90151 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Claire 2024-08-20 18:18:33 +02:00
parent 4c85fec993
commit bdc0e0d27e

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({}));
},
);