Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
twiddler committed Nov 8, 2024
1 parent 70032c0 commit 97971bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/@mantine/notifications/src/notifications.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export type NotificationPosition =
| 'bottom-right'
| 'bottom-center';

export interface NotificationData extends Omit<NotificationProps, 'onClose'>, Record<`data-${string}`, any> {
export interface NotificationData
extends Omit<NotificationProps, 'onClose'>,
Record<`data-${string}`, any> {
/** Notification id, can be used to close or update notification */
id?: string;

Expand Down

0 comments on commit 97971bb

Please sign in to comment.