const form = useForm({ defaultValues: { name: "" } });console.log("form meta api", form.state.fieldMeta.name);
const form = useForm({ defaultValues: { name: "" } });console.log("form meta api", form.state.fieldMeta.name);
my application logs
undefined
undefined
, the types suggest that name is of type
AnyFieldMeta
AnyFieldMeta
which does not include
undefined
undefined
, this leads me to believe I am misunderstanding something. Could the issue be that i am using nextjs? (i've checked with completly disabled ssr via dynamic import) I am on latest version of
"@tanstack/react-form": "^1.23.4"
"@tanstack/react-form": "^1.23.4"
If the solution is obvious and i am in fact misunderstanding something can you point me to the docs please?