update and remove unnecessary translation strings

This commit is contained in:
Amruth Pillai
2020-03-30 14:12:31 +05:30
parent 1b2bae43be
commit 82037d4cfe
12 changed files with 25 additions and 37 deletions

View File

@ -98,7 +98,7 @@ const Form = ({ item, onChange, identifier = '' }) => {
<TextField
className="mb-6"
label={t('references.phone.label')}
placeholder={t('references.phone.placeholder')}
placeholder="+1 541 754 3010"
value={item.phone}
onChange={v => onChange(`${identifier}phone`, v)}
/>
@ -106,7 +106,7 @@ const Form = ({ item, onChange, identifier = '' }) => {
<TextField
className="mb-6"
label={t('references.email.label')}
placeholder={t('references.email.placeholder')}
placeholder="richard@piedpiper.com"
value={item.email}
onChange={v => onChange(`${identifier}email`, v)}
/>