[Glitch] Fix to update suggestion list after dismiss
Port 9bb3341849
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
8fc0b592cb
commit
72eac238ba
1 changed files with 8 additions and 1 deletions
|
@ -48,5 +48,12 @@ export const dismissSuggestion = accountId => (dispatch, getState) => {
|
||||||
id: accountId,
|
id: accountId,
|
||||||
});
|
});
|
||||||
|
|
||||||
api(getState).delete(`/api/v1/suggestions/${accountId}`);
|
api(getState).delete(`/api/v1/suggestions/${accountId}`).then(() => {
|
||||||
|
dispatch(fetchSuggestionsRequest());
|
||||||
|
|
||||||
|
api(getState).get('/api/v2/suggestions').then(response => {
|
||||||
|
dispatch(importFetchedAccounts(response.data.map(x => x.account)));
|
||||||
|
dispatch(fetchSuggestionsSuccess(response.data));
|
||||||
|
}).catch(error => dispatch(fetchSuggestionsFail(error)));
|
||||||
|
}).catch(() => {});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue