-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EPMRPP-90288 || removed duplicate cases with name
- Loading branch information
1 parent
0f43c10
commit 439762a
Showing
1 changed file
with
1 addition
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,7 +135,6 @@ const RequestSupport = ({ handleSubmit, initialize, invalid }) => { | |
label={formatMessage(messages.firstNameLabel)} | ||
placeholder={formatMessage(messages.firstNamePlaceholder)} | ||
defaultWidth={false} | ||
name="first_name" | ||
/> | ||
</FieldErrorHint> | ||
</FieldProvider> | ||
|
@@ -146,7 +145,6 @@ const RequestSupport = ({ handleSubmit, initialize, invalid }) => { | |
label={formatMessage(messages.lastNameLabel)} | ||
placeholder={formatMessage(messages.lastNamePlaceholder)} | ||
defaultWidth={false} | ||
name="last_name" | ||
/> | ||
</FieldErrorHint> | ||
</FieldProvider> | ||
|
@@ -157,7 +155,6 @@ const RequestSupport = ({ handleSubmit, initialize, invalid }) => { | |
label={formatMessage(messages.emailLabel)} | ||
placeholder="[email protected]" | ||
defaultWidth={false} | ||
name="email" | ||
/> | ||
</FieldErrorHint> | ||
</FieldProvider> | ||
|
@@ -168,13 +165,12 @@ const RequestSupport = ({ handleSubmit, initialize, invalid }) => { | |
label={formatMessage(messages.companyNameLabel)} | ||
placeholder={formatMessage(messages.companyNamePlaceholder)} | ||
defaultWidth={false} | ||
name="company" | ||
/> | ||
</FieldErrorHint> | ||
</FieldProvider> | ||
|
||
<FieldProvider name="00N7T000000i00E" format={Boolean}> | ||
<Checkbox className={cx('check-item')} name="00N7T000000i00E"> | ||
<Checkbox className={cx('check-item')}> | ||
{formatMessage(messages.subscribeToNews)} | ||
</Checkbox> | ||
</FieldProvider> | ||
|