aboutsummaryrefslogtreecommitdiff
path: root/src/store/actions
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-03-11 18:19:32 -0500
committerIvan Chen <ivan@tagg.id>2021-03-11 18:19:32 -0500
commite63394198f554c7a302c12d8c540c1d730f65d86 (patch)
treefc56df9e55e93159f41bce6b77491bfd74b7037e /src/store/actions
parentaa601cd9b35778408b7efdf1eaeca7c0a38d092f (diff)
removed unused store state
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);