diff options
| author | Brian Kim <brian@tagg.id> | 2021-06-15 17:15:43 +0900 |
|---|---|---|
| committer | Brian Kim <brian@tagg.id> | 2021-06-15 17:15:43 +0900 |
| commit | 4a422e43c6a6deaeff5d8fcc692138454653e4b9 (patch) | |
| tree | 2e86ab879ea35e879581eb64be955d0e5481ff80 /src/store/initialStates.ts | |
| parent | c57b4959c90cec90dd0936f75a9086a4430b66b1 (diff) | |
| parent | db0678d647f774dcb1cd60513985d9b6fbd0e28b (diff) | |
Merge with master
Diffstat (limited to 'src/store/initialStates.ts')
| -rw-r--r-- | src/store/initialStates.ts | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/store/initialStates.ts b/src/store/initialStates.ts index e2902a2d..92a1e456 100644 --- a/src/store/initialStates.ts +++ b/src/store/initialStates.ts @@ -1,14 +1,17 @@ -import {CommentThreadType, UniversityType} from './../types/types'; import { - MomentType, NotificationType, - ProfilePreviewType, ProfileInfoType, + ProfilePreviewType, ScreenType, SocialAccountType, UserType, UserXType, } from '../types'; +import { + CommentThreadType, + MomentPostType, + UniversityType, +} from './../types/types'; export const NO_PROFILE: ProfileInfoType = { biography: '', @@ -29,7 +32,7 @@ export const NO_PROFILE: ProfileInfoType = { is_private: true, }; -export const EMPTY_MOMENTS_LIST = <MomentType[]>[]; +export const EMPTY_MOMENTS_LIST = <MomentPostType[]>[]; export const EMPTY_NOTIFICATIONS_LIST = <NotificationType[]>[]; |
