aboutsummaryrefslogtreecommitdiff
path: root/src/components/onboarding/BirthDatePicker.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/onboarding/BirthDatePicker.tsx')
-rw-r--r--src/components/onboarding/BirthDatePicker.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/onboarding/BirthDatePicker.tsx b/src/components/onboarding/BirthDatePicker.tsx
index 0fc597c3..6bef5798 100644
--- a/src/components/onboarding/BirthDatePicker.tsx
+++ b/src/components/onboarding/BirthDatePicker.tsx
@@ -45,7 +45,7 @@ const BirthDatePicker = React.forwardRef(
ref={ref}
{...props}>
{(updated || props.showPresetdate) && date
- ? moment(date).format('YYYY-MM-DD')
+ ? moment(date).format('MM-DD-YYYY')
: 'Date of Birth'}
</Text>
</TouchableOpacity>