Aaron Pettengill
Aaron Pettengill
RVF v6 has been released 🎉 The guidance around how to structure default values has changed in v6 (I know you're already well into using v6 at this point haha)....
Hi! I think it's a good idea to expose the `objectFromPathEntries` api so you can use it with `getValues`. If you happen to be using `zod-form-data`, that already exports a...
RVF v6 has been released 🎉 In v6 `form.value()` returns a structured object, rather than form data. If that still doesn't quite cover this use-case, please feel free to open...
I'm also seeing this issue. Since zod doesn't run `transform` after any failed refinements, it seems like it also shouldn't run any refinements that come after that `transform`.
I've definitely run into this before, too. Now that we track refs for everything in v5, we could probably use those to determine if an error is associated with a...
Closing this in favor of #467, which I think is a good solution for this type of debugging pain point.
Hi! In your code example you're using `renderFormIdInput`, but you haven't passed an `id` to `useForm`. Does that fix the issue?
I guess it's not explicitly mentioned, but it's in the code example here: https://www.rvf-js.io/remix#caveats With the generated id, if you don't have JS enabled or it isn't loaded yet, the...
> Currently the id is mandatory if you want to ever do any server-side validation If that's the case then it's definitely a bug. Having no id should be supported...
Yeah, that make sense. `renderFormIdInput` has built-in logic to not render when there's no formId, but I think that's what's broken.