You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'applyTextInputStyles' is only called on component did mount, when an error is applied to the component after the initial mount the error state CSS is not applied.
'applyTextInputStyles' is only called on component did mount, when an error is applied to the component after the initial mount the error state CSS is not applied.
componentDidMount() {
this.applyTextInputStyles();
}
Maybe this needs adding
componentDidUpdate() {
// check here to see if the error state has changed before applying the styles
this.applyTextInputStyles();
}
The text was updated successfully, but these errors were encountered: