Handling errors from api with Formik
问题 I am catching errors from api and showing them in form, and that is working fine. But the problem is when I change one field in form all errors disappear. For form I am using Formik and for validation Yup. const handleSubmit = (values, {setSubmitting, setFieldError, setStatus}) => { someApiCall(values) .then( () => { }, (error) => { // example of setting error setFieldError('email', 'email is already used'); }) .finally(() => { setSubmitting(false) }); }; I tried with adding third parametar