From 70032c03e95e241ea978bbd16ab3e5b7c48ad298 Mon Sep 17 00:00:00 2001 From: twiddler <13364827+twiddler@users.noreply.github.com> Date: Fri, 8 Nov 2024 12:31:19 +0100 Subject: [PATCH] NotificationData --- packages/@mantine/notifications/src/notifications.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@mantine/notifications/src/notifications.store.ts b/packages/@mantine/notifications/src/notifications.store.ts index 772c737587d..2337a77d50b 100644 --- a/packages/@mantine/notifications/src/notifications.store.ts +++ b/packages/@mantine/notifications/src/notifications.store.ts @@ -10,7 +10,7 @@ export type NotificationPosition = | 'bottom-right' | 'bottom-center'; -export interface NotificationData extends Omit, Record { +export interface NotificationData extends Omit, Record<`data-${string}`, any> { /** Notification id, can be used to close or update notification */ id?: string;