Skip to content

Commit

Permalink
changed small bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
kylezryr committed Mar 16, 2024
1 parent a04d052 commit c206103
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/app/auth/onboarding/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,14 @@ function OnboardingScreen() {
placeholder="Select Date"
label="Birthday"
value={birthday}
/>
>
<Icon
name="event"
type="material"
color={colors.darkGrey}
style={styles.icon}
></Icon>
</UserStringInput>
</View>
</Pressable>
</View>
Expand All @@ -201,7 +208,7 @@ function OnboardingScreen() {
options={[
'American Indian/Alaska Native',
'Asian',
// 'Black or African American',
'Black or African American',
'Native Hawaiian or other Pacific Islander',
'White',
'Prefer Not to Disclose',
Expand All @@ -213,7 +220,7 @@ function OnboardingScreen() {
</View>
<View>
<StyledButton
text={loading ? 'Loading ...' : 'Update Profile'}
text={'Update Profile'}
onPress={updateProfileAndGoHome}
disabled={loading}
/>
Expand Down
2 changes: 2 additions & 0 deletions src/app/settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ function SettingsScreen() {
setLoading(false);
setShowSaveEdits(false);
setBirthdayExists(true);
setBirthdayChanged(false);
}
};

Expand Down Expand Up @@ -180,6 +181,7 @@ function SettingsScreen() {
{'<Back'}
</Text>
</Link>
<Link href="/auth/onboarding">go to onboarding</Link>
<View>
<DateTimePickerModal
isVisible={showDatePicker}
Expand Down

0 comments on commit c206103

Please sign in to comment.