karan042

Results 2 comments of karan042

Would this also affect code like ```typescript const errors = useStore(field.store, (state) => state.meta.errors) ``` since it is returning an array. Taken from [docs](https://tanstack.com/form/latest/docs/framework/react/examples/large-form?path=examples%2Freact%2Flarge-form%2Fsrc%2Fcomponents%2Ftext-fields.tsx)

Will this be required when accessing field from form.Field (e.g. [taken from here](https://tanstack.com/form/latest/docs/framework/react/guides/validation#when-is-validation-performed)) or only from useFormContext? ```typescript value < 13 ? 'You must be 13 to make an account'...