form.errors alway undefined
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.
Thanks for the issue! I'd be happy to accept a PR for this.
@kentcdodds I would love to fix this issue. Can I go on?
Sure!
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 think this works as intended!