diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-03-16 13:11:06 -0400 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-03-17 18:38:08 -0400 |
| commit | 593347d11dfa0d7c9d32cb79c2639041ce07d849 (patch) | |
| tree | cc789fc7dddff3fcec2eb5ea221a1d0c3749a8bf /src/store/initialStates.ts | |
| parent | 07a15098625786451270e30e61e2d6e78c02d4db (diff) | |
using s3 url instead of image passed from backend
Diffstat (limited to 'src/store/initialStates.ts')
| -rw-r--r-- | src/store/initialStates.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/initialStates.ts b/src/store/initialStates.ts index b43e4a1d..275664cc 100644 --- a/src/store/initialStates.ts +++ b/src/store/initialStates.ts @@ -42,8 +42,8 @@ export const EMPTY_PROFILE_PREVIEW_LIST = <ProfilePreviewType[]>[]; export const NO_USER_DATA = { user: <UserType>NO_USER, profile: <ProfileType>NO_PROFILE, - avatar: <string | null>'', - cover: <string | null>'', + avatar: <string | undefined>'', + cover: <string | undefined>'', isOnboardedUser: false, newVersionAvailable: false, newNotificationReceived: false, |
