diff --git a/src/pages/ReimbursementAccount/CompanyStep.js b/src/pages/ReimbursementAccount/CompanyStep.js index 3af8714e784c..0bc66f9ef3a4 100644 --- a/src/pages/ReimbursementAccount/CompanyStep.js +++ b/src/pages/ReimbursementAccount/CompanyStep.js @@ -278,7 +278,10 @@ class CompanyStep extends React.Component { containerStyles={[styles.mt4]} secureTextEntry textContentType="password" - onChangeText={value => this.clearErrorAndSetValue('password', value)} + onChangeText={(value) => { + this.setState({password: value}); + this.clearError('password'); + }} value={this.state.password} onSubmitEditing={this.submit} errorText={this.getErrorText('password')}