github refinedev/refine @refinedev/mantine@2.22.2

Patch Changes

  • #4629 58cc48b7b8f Thanks @alicanerdurmaz! - fixed: description prop does not show up in Mantine notification.
    With this fix, you can now use description prop to show a description in the notification.

    import { useNotification } from "@refinedev/core";
    
    const { open } = useNotification();
    
    open?.({
        description: "This is a description",
        message: "This is a message",
        type: "progress",
    });

Don't miss a new refine release

NewReleases is sending notifications on new releases.