diff options
| author | Ivan Chen <ivan@thetaggid.com> | 2021-01-13 02:58:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-13 02:58:24 -0500 |
| commit | 353c1ec685698bb86e0ff96a346d88205ee389cf (patch) | |
| tree | 021f721cc8eb94ab007183c39d808e9eb3a468e8 /src/store/reducers | |
| parent | 5664f30a218af4620be69c66f4aba93d5972f890 (diff) | |
[TMA-531] New Explore Page (#179)
* redux done
* done
* added refresh control
* added profile navigation
* minor spacing change
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; }, }, }); |
