diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-01-27 14:03:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 14:03:31 -0500 |
commit | 3f133f27964439f6ef5caab41d7801bbef498294 (patch) | |
tree | 67fb853bcac9a9a0645e6298674b057af0aacffb /src/components/onboarding/BirthDatePicker.tsx | |
parent | 6cd49ed14f99fe953026e54969abc6232f3aec57 (diff) | |
parent | 3a68870bb64f49041e8412bd2b27ba52d58775d5 (diff) |
Merge pull request #201 from tbhatia2299/TMA-510-BIRTHDAY-FIELD
TMA-510-Birthday-Field
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> |