aboutsummaryrefslogtreecommitdiff
path: root/src/components/onboarding/BirthDatePicker.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-01-27 17:22:18 -0500
committerIvan Chen <ivan@tagg.id>2021-01-27 17:22:18 -0500
commit821f7b6e5b22405484c3545c6f17600d1f79feaa (patch)
tree346f779dfaa8e4c4378b9d6f2dc1af4ec5aa9a54 /src/components/onboarding/BirthDatePicker.tsx
parente897fdbbbe8442f05000645395753ff008a19bf4 (diff)
parent21a3e000443c5c4ab2ae91000108b9d3b0383964 (diff)
Merge branch 'master' into tma577-profile-slowness
# Conflicts: # src/services/index.ts
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>