@refinedev/mantine@2.22.2
版本发布时间: 2023-07-05 22:39:23
refinedev/refine最新发布版本:@refinedev/supabase@5.9.4(2024-09-03 19:48:37)
Patch Changes
-
#4629
58cc48b7b8f
Thanks @alicanerdurmaz! - fixed:description
prop does not show up in Mantine notification. With this fix, you can now usedescription
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", });