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}