From 7d57f29894ec90f70d2acfa5ec70df483048b160 Mon Sep 17 00:00:00 2001 From: Piyush Gupta Date: Thu, 13 Nov 2025 02:36:06 +0530 Subject: [PATCH] fix: enhance notification className to support additional styles --- frontend/src/components/notifications/Notifications.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/notifications/Notifications.tsx b/frontend/src/components/notifications/Notifications.tsx index df07bf5df..58b9179bd 100644 --- a/frontend/src/components/notifications/Notifications.tsx +++ b/frontend/src/components/notifications/Notifications.tsx @@ -68,7 +68,7 @@ export const createNotification = ( autoClose: toastProps.autoClose || 15000, theme: "dark", type: myProps?.type || "info", - className: "pointer-events-auto" + className: `pointer-events-auto ${toastProps.className}` }); export const NotificationContainer = () => (