diff options
Diffstat (limited to 'src/store/reducers')
| -rw-r--r-- | src/store/reducers/taggUsersReducer.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/reducers/taggUsersReducer.ts b/src/store/reducers/taggUsersReducer.ts index ff30f7a0..33e2e18d 100644 --- a/src/store/reducers/taggUsersReducer.ts +++ b/src/store/reducers/taggUsersReducer.ts @@ -6,8 +6,8 @@ const taggUsersSlice = createSlice({ initialState: NO_TAGG_USERS, reducers: { taggUsersFetched: (state, action) => { - state.recentSearches = action.payload.taggUsers; - state.taggUsers = action.payload.taggUsers; + state.recentSearches = action.payload.recentSearches; + state.explores = action.payload.explores; }, }, }); |
