aboutsummaryrefslogtreecommitdiff
path: root/src/store/actions
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-03-12 17:39:04 -0500
committerIvan Chen <ivan@tagg.id>2021-03-12 17:39:04 -0500
commit40a0e9fde2a4a16baebb99f0285fc630ae6cfac1 (patch)
tree34c352779a75ce907062b1c6cdabae73d05c670a /src/store/actions
parent1433c44fd4588b9044df83e199a57223b4979446 (diff)
parent34d94e1dff831aafa984a2f6c9b9b01e2e349154 (diff)
Merge branch 'master' into tma694-edit-badges
# Conflicts: # src/components/search/SearchCategories.tsx
Diffstat (limited to 'src/store/actions')
-rw-r--r--src/store/actions/taggUsers.ts4
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);