diff options
| author | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-11 07:01:41 -0800 |
|---|---|---|
| committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-02-11 07:01:41 -0800 |
| commit | 88433cda2938a2fa4f6bf3e4b2282fe0095dfe71 (patch) | |
| tree | 5f33b1981a16fb1289b9f4ac7fb1c0dbdab03249 | |
| parent | 84c88301710de2a2500e89191bdef49846b34f12 (diff) | |
Add sp_swipe_tutorial to ProfileType:
| -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; |
