fix typo in placeholder dates

This commit is contained in:
Adam Leskis
2021-07-06 12:57:56 +01:00
parent 5fbf48cc3b
commit 5771f28018
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -80,14 +80,14 @@ const EducationModal = () => {
<Input
type="date"
label={t('shared.forms.startDate')}
placeholder="6th August 208"
placeholder="6th August 2008"
{...getFieldProps(formik, schema, 'startDate')}
/>
<Input
type="date"
label={t('shared.forms.endDate')}
placeholder="6th August 208"
placeholder="6th August 2008"
{...getFieldProps(formik, schema, 'endDate')}
/>
+2 -2
View File
@@ -53,14 +53,14 @@ const ProjectModal = () => {
<Input
type="date"
label={t('shared.forms.startDate')}
placeholder="6th August 208"
placeholder="6th August 2008"
{...getFieldProps(formik, schema, 'date')}
/>
<Input
type="date"
label={t('shared.forms.endDate')}
placeholder="6th August 208"
placeholder="6th August 2008"
{...getFieldProps(formik, schema, 'endDate')}
/>
+2 -2
View File
@@ -71,14 +71,14 @@ const WorkModal = () => {
<Input
type="date"
label={t('shared.forms.startDate')}
placeholder="6th August 208"
placeholder="6th August 2008"
{...getFieldProps(formik, schema, 'startDate')}
/>
<Input
type="date"
label={t('shared.forms.endDate')}
placeholder="6th August 208"
placeholder="6th August 2008"
{...getFieldProps(formik, schema, 'endDate')}
/>