diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/components/profile/ProfileBody.tsx | 3 | ||||
-rw-r--r-- | src/store/initialStates.ts | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/components/profile/ProfileBody.tsx b/src/components/profile/ProfileBody.tsx index 64aec09c..6284ff59 100644 --- a/src/components/profile/ProfileBody.tsx +++ b/src/components/profile/ProfileBody.tsx @@ -162,10 +162,11 @@ const styles = StyleSheet.create({ fontWeight: '600', fontSize: 16.5, marginBottom: '1%', + marginTop: '-3%', }, biography: { fontSize: 16, - marginBottom: '0.5%', + marginBottom: '1.5%', }, website: { fontSize: 16, diff --git a/src/store/initialStates.ts b/src/store/initialStates.ts index c7d2d704..2a5b76db 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', |