I have a React Form Using Formik & Yup. The client needs it to move to the next step automatically after the user fills any input field. Do you have any ideas? articles or tutorials I can learn how to do it?
I found the solution is to use the onInput method to fire an event. But I think it is worth mention that most of my inputs were Radio inputs so it was a suitable solution in this situation but it may be a bad performance for text, number or tel or any input that requires multi keystrokes. So consider this before using it.