From d01f493554717b6924bbac583eb258137e0e7ef5 Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Thu, 21 Aug 2025 17:32:17 -0400 Subject: [PATCH] chore: tailwind migrate Signed-off-by: Adam Setch --- src/renderer/components/notifications/NotificationRow.tsx | 2 +- .../components/notifications/RepositoryNotifications.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/components/notifications/NotificationRow.tsx b/src/renderer/components/notifications/NotificationRow.tsx index dda3f6547..6b2108728 100644 --- a/src/renderer/components/notifications/NotificationRow.tsx +++ b/src/renderer/components/notifications/NotificationRow.tsx @@ -86,7 +86,7 @@ export const NotificationRow: FC = ({ 'pl-3 pr-1 py-1.5', 'text-gitify-font border-gitify-notification-border hover:bg-gitify-notification-hover', (isAnimated || animateExit) && - 'translate-x-full opacity-0 transition duration-[350ms] ease-in-out', + 'translate-x-full opacity-0 transition duration-350 ease-in-out', (isRead || showAsRead) && Opacity.READ, )} > diff --git a/src/renderer/components/notifications/RepositoryNotifications.tsx b/src/renderer/components/notifications/RepositoryNotifications.tsx index 31f4e07d4..2d7e5c488 100644 --- a/src/renderer/components/notifications/RepositoryNotifications.tsx +++ b/src/renderer/components/notifications/RepositoryNotifications.tsx @@ -62,7 +62,7 @@ export const RepositoryNotifications: FC = ({ 'group pr-1 py-0.5', 'bg-gitify-repository', animateExit && - 'translate-x-full opacity-0 transition duration-[350ms] ease-in-out', + 'translate-x-full opacity-0 transition duration-350 ease-in-out', showAsRead && Opacity.READ, )} onClick={actionToggleRepositoryNotifications}