Describe the bug
When using valibot resolver and partialCheck with forward, I do not see all errors that are returned from useForm. Vanilla Valibot however returns all errors. In the provided example I want to see email AND password2 being invalid. RHK returns password2 error only once I fix email. I am using latest libraries.
Describe the bug When using valibot resolver and partialCheck with forward, I do not see all errors that are returned from useForm. Vanilla Valibot however returns all errors. In the provided example I want to see email AND password2 being invalid. RHK returns password2 error only once I fix email. I am using latest libraries.
To Reproduce Steps to reproduce the behavior:
email
error, where in the log for valibot parseSafe you will see 2 errors.Codesandbox link (Required) https://codesandbox.io/p/sandbox/wdxr64?file=%2Fsrc%2FApp.tsx%3A34%2C1
Expected behavior 2 errors for
email
andpassword2
should be listed.