Forgot to dispatch the action

Renaud Chaput 2024-06-13 16:59:19 +02:00
parent ee42eaab0a
commit 5ad3e77f85
No known key found for this signature in database
GPG Key ID: BCFC859D49B46990
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@ export const fetchNotifications = createDataLoadingThunk(
if (fetchedAccounts.length > 0)
dispatch(importFetchedAccounts(fetchedAccounts));
if (fetchedStatuses.length > 0) importFetchedStatuses(fetchedStatuses);
if (fetchedStatuses.length > 0)
dispatch(importFetchedStatuses(fetchedStatuses));
// dispatch(submitMarkers());
},