From d8f145df3782679e3df573c31880b618d27f9ba2 Mon Sep 17 00:00:00 2001 From: Jessica Lawshe <5312836+lawshe@users.noreply.github.com> Date: Tue, 17 Oct 2023 08:26:38 -0500 Subject: [PATCH] Merge pull request #14832 from overleaf/jel-alert [web] Remove unused class for new alerts GitOrigin-RevId: 3b9789d64155c06e633e7f010287d4166da25e98 --- services/web/frontend/js/shared/components/notification.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/services/web/frontend/js/shared/components/notification.tsx b/services/web/frontend/js/shared/components/notification.tsx index 25a28a2f29..7f9bb612a9 100644 --- a/services/web/frontend/js/shared/components/notification.tsx +++ b/services/web/frontend/js/shared/components/notification.tsx @@ -57,7 +57,6 @@ function Notification({ const notificationClassName = classNames( 'notification', `notification-type-${type}`, - isDismissible ? 'notification-dismissible' : '', isActionBelowContent ? 'notification-cta-below-content' : '' )