diff options
-rw-r--r-- | src/store/initialStates.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/store/initialStates.ts b/src/store/initialStates.ts index 08dc7077..4da53c2e 100644 --- a/src/store/initialStates.ts +++ b/src/store/initialStates.ts @@ -17,7 +17,9 @@ export const NO_PROFILE: ProfileType = { gender: '', birthday: undefined, university_class: 2021, - profile_completion_stage: 1, + + //Default to an invalid value and ignore it gracefully while showing tutorials / popups. + profile_completion_stage: -1, snapchat: '', tiktok: '', friendship_status: 'no_record', |