diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-03-11 18:19:32 -0500 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-03-11 18:19:32 -0500 |
| commit | e63394198f554c7a302c12d8c540c1d730f65d86 (patch) | |
| tree | fc56df9e55e93159f41bce6b77491bfd74b7037e /src/store/actions | |
| parent | aa601cd9b35778408b7efdf1eaeca7c0a38d092f (diff) | |
removed unused store state
Diffstat (limited to 'src/store/actions')
| -rw-r--r-- | src/store/actions/taggUsers.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/actions/taggUsers.ts b/src/store/actions/taggUsers.ts index 7b6d4d5e..72ce848b 100644 --- a/src/store/actions/taggUsers.ts +++ b/src/store/actions/taggUsers.ts @@ -11,10 +11,10 @@ export const loadRecentlySearched = (): ThunkAction< > => async (dispatch) => { try { const recentSearches = await loadRecentlySearchedUsers(); - const exploreSections = await getAllExploreSections(); + getAllExploreSections(); dispatch({ type: taggUsersFetched.type, - payload: {recentSearches, explores: exploreSections}, + payload: {recentSearches}, }); } catch (error) { console.log(error); |
