diff --git a/packages/@mantine/notifications/src/notifications.store.ts b/packages/@mantine/notifications/src/notifications.store.ts index 772c737587d..75d8285a849 100644 --- a/packages/@mantine/notifications/src/notifications.store.ts +++ b/packages/@mantine/notifications/src/notifications.store.ts @@ -10,7 +10,9 @@ 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;