From 18ec9543bde95b2b87ac0bda5d6a64998878577f Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Wed, 14 Jan 2026 04:37:44 +0530 Subject: [PATCH] chore: ran frontend linting --- .../components/notifications/NotificationButton.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/surfsense_web/components/notifications/NotificationButton.tsx b/surfsense_web/components/notifications/NotificationButton.tsx index fe400d2a8..0b81844ca 100644 --- a/surfsense_web/components/notifications/NotificationButton.tsx +++ b/surfsense_web/components/notifications/NotificationButton.tsx @@ -25,11 +25,11 @@ export function NotificationButton() { {unreadCount > 0 && ( 9 && "px-1" - )} - > + className={cn( + "absolute -top-1 -right-1 flex h-5 w-5 items-center justify-center rounded-full bg-black text-[10px] font-medium text-white dark:bg-zinc-800 dark:text-zinc-50", + unreadCount > 9 && "px-1" + )} + > {unreadCount > 99 ? "99+" : unreadCount} )}