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
Warning: Cannot update a component (LoginPage) while rendering a different component (ForwardRef). To locate the bad setState() call inside ForwardRef, follow the stack trace as described in https://reactjs.org/link/setstate-in-render
#320
I was able to fix this by wrapping my setState logic in setTimeout function,Here is my code.
`
const handleChange = code => {
setTimeout(() => {
setCode(code);
}, 0);
};
When i try to enter numbers im geting this errors
The text was updated successfully, but these errors were encountered: