We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the following code I get:
What do I do wrong? Or is it the intended behavior and I just have to learn to live with that?
P.S. No, this is not the "1 server + 1 client log" case. I counted only the client logs.
import { z } from 'zod'; import { Form as FrameworkForm, useActionData, useNavigation, useSubmit, } from '@remix-run/react'; import { createForm } from 'remix-forms'; const Form = createForm({ component: FrameworkForm, useActionData, useNavigation, useSubmit, }); const schema = z.object({ test: z.string() }); export default function Test() { return ( <Form schema={schema}> {({ Field, Errors, Button }) => { console.log('RENDER FORM'); return ( <> <Field name="test" /> <Errors /> <Button /> </> ); }} </Form> ); }
The text was updated successfully, but these errors were encountered:
It could be a development race condition? Can you try it with the environment set as production?
Sorry, something went wrong.
No branches or pull requests
Using the following code I get:
What do I do wrong? Or is it the intended behavior and I just have to learn to live with that?
P.S. No, this is not the "1 server + 1 client log" case. I counted only the client logs.
The text was updated successfully, but these errors were encountered: