diff --git a/src/pages/ReimbursementAccount/AddressForm.js b/src/pages/ReimbursementAccount/AddressForm.js index fdf0150f92d2..d8c866ae6463 100644 --- a/src/pages/ReimbursementAccount/AddressForm.js +++ b/src/pages/ReimbursementAccount/AddressForm.js @@ -72,7 +72,6 @@ const AddressForm = props => ( value={props.values.state} onChange={value => props.onFieldChange({state: value})} errorText={props.errors.state ? props.translate('bankAccount.error.addressState') : ''} - hasError={Boolean(props.errors.state)} /> diff --git a/src/pages/ReimbursementAccount/CompanyStep.js b/src/pages/ReimbursementAccount/CompanyStep.js index e0bf9e1eb4e9..ed295e9e293b 100644 --- a/src/pages/ReimbursementAccount/CompanyStep.js +++ b/src/pages/ReimbursementAccount/CompanyStep.js @@ -290,7 +290,6 @@ class CompanyStep extends React.Component { onInputChange={value => this.clearErrorAndSetValue('incorporationState', value)} value={this.state.incorporationState} errorText={this.getErrorText('incorporationState')} - hasError={this.getErrors().incorporationState} />