diff options
author | Tanmay Bhatia <tanmay@thetaggid.com> | 2021-01-22 16:47:23 -0800 |
---|---|---|
committer | Tanmay Bhatia <tanmay@thetaggid.com> | 2021-01-22 16:47:23 -0800 |
commit | 3a68870bb64f49041e8412bd2b27ba52d58775d5 (patch) | |
tree | ebb5d5104bbf0c16fdf2901aa9546edbaca5fc72 /src/components/onboarding/BirthDatePicker.tsx | |
parent | 30a7a34f8c5eb379de4e5ebe38cfeeb259f3f1e3 (diff) |
Changed date order during onboarding
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> |