material-components-ios-codelabs icon indicating copy to clipboard operation
material-components-ios-codelabs copied to clipboard

Password validation error doesn't disappear

Open johnthuss opened this issue 6 years ago • 0 comments

The validation for the password field needs an else block to clear the error if it was in the error state already. if (...) { passwordTextFieldController.setErrorText("Password is too short", errorAccessibilityValue: nil) } else { passwordTextFieldController.setErrorText(nil, errorAccessibilityValue: nil) }

johnthuss avatar May 09 '18 01:05 johnthuss