diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-03-12 17:10:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-12 17:10:28 -0500 |
| commit | 34d94e1dff831aafa984a2f6c9b9b01e2e349154 (patch) | |
| tree | 43555e2dc1edbb7b0719fbf61ed621868a79f0bb /src/store/actions | |
| parent | 3585aacbcfe148fa7ce1ed5d3d3fd33ac784be48 (diff) | |
| parent | 2c9b2cf69d6e2fba44bcecb2636f51c94b8a64dd (diff) | |
Merge pull request #294 from IvanIFChen/tma695-revamp-discover-screen
[TMA-695] Revamp Discover Screen
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); |
