react-hook-form to @tanstack/react-form and I'm trying to understand how the validation works with zod and creatFormFactory. I've followed this example: https://tanstack.com/form/latest/docs/framework/react/guides/ssronBlur is invoked in an input and it passes the validation, the form state becomes invalid (canSubmit becomes false) because the other input is required.validators: { onBlur: formExampleSchema }, }, runs for all the fields. const formErrors = useStore((formState) => formState.errors); simply returns an arrays of errors, there's no way to map the error message with the field.field.state.meta.touchedErrors I don't get any error, it's like the field is not on error.