diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/store/initialStates.ts | 1 | ||||
-rw-r--r-- | src/types/types.ts | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/store/initialStates.ts b/src/store/initialStates.ts index 8d137a5d..aa391713 100644 --- a/src/store/initialStates.ts +++ b/src/store/initialStates.ts @@ -21,6 +21,7 @@ export const NO_PROFILE: ProfileType = { //Default to an invalid value and ignore it gracefully while showing tutorials / popups. profile_completion_stage: -1, + sp_swipe_tutorial: 0, snapchat: '', tiktok: '', friendship_status: 'no_record', diff --git a/src/types/types.ts b/src/types/types.ts index 7fccaa44..fe16fb8e 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -23,6 +23,7 @@ export interface ProfileType { gender: string; university_class: number; profile_completion_stage: number; + sp_swipe_tutorial: number; birthday: Date | undefined; snapchat: string; tiktok: string; |