diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-03-12 17:25:38 -0500 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-03-12 17:25:38 -0500 |
| commit | d58c534bff5fbe2941fe46f9ad4a3bfb8e4b3700 (patch) | |
| tree | d3a573417c19a9e1199e40015819a524536e5df9 /src/store/actions | |
| parent | e645175094525c38beedb9227052582117e4661b (diff) | |
| parent | 34d94e1dff831aafa984a2f6c9b9b01e2e349154 (diff) | |
Merge branch 'master' into hotfix-badge-name-fix
# Conflicts:
# src/screens/suggestedPeople/SPBody.tsx
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); |
