diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-03-25 12:26:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-25 12:26:28 -0400 |
| commit | e2fd6a1ccaa26eb2e8e7e3472c88e75cbc41fedd (patch) | |
| tree | 4d69b8598ef86e9a747a179ff6b71c7f1f723fc3 /src/store | |
| parent | 24a3e50c62df4f9c64a103154af2746c1f2ce8d0 (diff) | |
| parent | 35ebcd4da8471c9dbdd6bf7923ab06d66db9d364 (diff) | |
Merge pull request #327 from IvanIFChen/tma726-remove-new-to-tagg
[TMA-726] Remove new to tagg
Diffstat (limited to 'src/store')
| -rw-r--r-- | src/store/actions/taggUsers.ts | 3 | ||||
| -rw-r--r-- | src/store/initialStates.ts | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/store/actions/taggUsers.ts b/src/store/actions/taggUsers.ts index 72ce848b..0cd94e92 100644 --- a/src/store/actions/taggUsers.ts +++ b/src/store/actions/taggUsers.ts @@ -1,5 +1,5 @@ import {Action, ThunkAction} from '@reduxjs/toolkit'; -import {getAllExploreSections, loadRecentlySearchedUsers} from '../../services'; +import {loadRecentlySearchedUsers} from '../../services'; import {taggUsersFetched} from '../reducers'; import {RootState} from '../rootReducer'; @@ -11,7 +11,6 @@ export const loadRecentlySearched = (): ThunkAction< > => async (dispatch) => { try { const recentSearches = await loadRecentlySearchedUsers(); - getAllExploreSections(); dispatch({ type: taggUsersFetched.type, payload: {recentSearches}, diff --git a/src/store/initialStates.ts b/src/store/initialStates.ts index b43e4a1d..28a4d10a 100644 --- a/src/store/initialStates.ts +++ b/src/store/initialStates.ts @@ -1,6 +1,5 @@ import {CommentThreadType} from './../types/types'; import { - ExploreSectionType, MomentType, NotificationType, ProfilePreviewType, |
