aboutsummaryrefslogtreecommitdiff
path: root/src/store/reducers
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/reducers
parentaa601cd9b35778408b7efdf1eaeca7c0a38d092f (diff)
removed unused store state
Diffstat (limited to 'src/store/reducers')
-rw-r--r--src/store/reducers/taggUsersReducer.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/store/reducers/taggUsersReducer.ts b/src/store/reducers/taggUsersReducer.ts
index 33e2e18d..92973101 100644
--- a/src/store/reducers/taggUsersReducer.ts
+++ b/src/store/reducers/taggUsersReducer.ts
@@ -7,7 +7,6 @@ const taggUsersSlice = createSlice({
reducers: {
taggUsersFetched: (state, action) => {
state.recentSearches = action.payload.recentSearches;
- state.explores = action.payload.explores;
},
},
});