github refinedev/refine @refinedev/react-hook-form@4.4.2

Patch Changes

  • #4576 9a895ea39dc Thanks @alicanerdurmaz! - fixed: handleSubmitReactHookForm now returns a Promise without awaiting it.
    With this change, unhandled errors will propagate to the caller.

  • #4527 ceadcd29fc9 Thanks @salihozdemir! - fix: prioritization of forgotten identifier

    If identifier is provided, it will be used instead of name.

    import { useModalForm } from "@refinedev/react-hook-form";
    
    useModalForm({
        refineCoreProps: {
            resource: "identifier-value",
        },
    });

    fix: use translate keys with identifier

    Previously, the translate keys were generated using resource name. This caused issues when you had multiple resource usage with the same name. Now the translate keys are generated using identifier if it's present.

Don't miss a new refine release

NewReleases is sending notifications on new releases.