fix(VendorForm): placeholder phone number.

This commit is contained in:
elforjani13
2022-01-04 22:31:01 +02:00
parent 687dda1e7c
commit 3a3dd7a565

View File

@@ -39,7 +39,7 @@ function VendorFormAfterPrimarySection() {
{({ field, meta: { error, touched } }) => (
<InputGroup
intent={inputIntent({ error, touched })}
placeholder={intl.get('personal')}
placeholder={intl.get('work')}
{...field}
/>
)}
@@ -48,7 +48,7 @@ function VendorFormAfterPrimarySection() {
{({ field, meta: { error, touched } }) => (
<InputGroup
intent={inputIntent({ error, touched })}
placeholder={intl.get('work')}
placeholder={intl.get('mobile')}
{...field}
/>
)}