diff options
author | Ivan Chen <ivan@tagg.id> | 2021-01-27 17:22:18 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-01-27 17:22:18 -0500 |
commit | 821f7b6e5b22405484c3545c6f17600d1f79feaa (patch) | |
tree | 346f779dfaa8e4c4378b9d6f2dc1af4ec5aa9a54 /src/components/onboarding/BirthDatePicker.tsx | |
parent | e897fdbbbe8442f05000645395753ff008a19bf4 (diff) | |
parent | 21a3e000443c5c4ab2ae91000108b9d3b0383964 (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.tsx | 2 |
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> |