Patch Changes
-
fix: flatten errors consistently when validating before field mount (#2003)
Fixed an issue where
field.errorswas incorrectly nested as[[error]]instead of[error]whenform.validate()was called manually before a field was mounted. Theflat(1)operation is now applied by default unlessdisableErrorFlatis explicitly set to true, ensuring consistent error structure regardless of when validation occurs. -
run validation for fields without instances (#2001)