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
I might be missing something here, but when using <ErrorList errors={form.errors} id={form.errorId} /> form.errors is always undefined even when the form has errors.
If you log form.allErrors you get an object of all the form errors though.
The text was updated successfully, but these errors were encountered:
form.errors contains the errors of the form that aren't tied to a specific input (path: ""). If I type the wrong combination of username/password, form.errors is ['Invalid username or password'], for example.
I might be missing something here, but when using
<ErrorList errors={form.errors} id={form.errorId} />
form.errors is always undefined even when the form has errors.If you log
form.allErrors
you get an object of all the form errors though.The text was updated successfully, but these errors were encountered: