From 5b4c6b8674dad34d5f3106b56195f6751d40d805 Mon Sep 17 00:00:00 2001 From: Luke <39926192+LukeWasTakenn@users.noreply.github.com> Date: Wed, 15 Feb 2023 11:46:41 +0100 Subject: [PATCH] fix(web/notifications): add string as type to id --- web/src/features/notifications/NotificationWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/features/notifications/NotificationWrapper.tsx b/web/src/features/notifications/NotificationWrapper.tsx index fc0a0f6..45a69f8 100644 --- a/web/src/features/notifications/NotificationWrapper.tsx +++ b/web/src/features/notifications/NotificationWrapper.tsx @@ -14,7 +14,7 @@ export interface CustomNotificationProps { icon?: IconProp; iconColor?: string; position?: ToastPosition | 'top' | 'bottom'; - id?: number; + id?: number | string; type?: string; }