diff --git a/site/src/modules/notifications/NotificationsInbox/InboxButton.tsx b/site/src/modules/notifications/NotificationsInbox/InboxButton.tsx index d650ae18aa..0434c5ef1e 100644 --- a/site/src/modules/notifications/NotificationsInbox/InboxButton.tsx +++ b/site/src/modules/notifications/NotificationsInbox/InboxButton.tsx @@ -1,6 +1,7 @@ import { Button, type ButtonProps } from "components/Button/Button"; import { BellIcon } from "lucide-react"; import { forwardRef } from "react"; +import { cn } from "utils/cn"; import { UnreadBadge } from "./UnreadBadge"; type InboxButtonProps = { @@ -21,7 +22,11 @@ export const InboxButton = forwardRef( {unreadCount > 0 && ( )} diff --git a/site/src/modules/notifications/NotificationsInbox/UnreadBadge.tsx b/site/src/modules/notifications/NotificationsInbox/UnreadBadge.tsx index 940c81974d..af6f5f1b13 100644 --- a/site/src/modules/notifications/NotificationsInbox/UnreadBadge.tsx +++ b/site/src/modules/notifications/NotificationsInbox/UnreadBadge.tsx @@ -13,7 +13,8 @@ export const UnreadBadge: FC = ({ return (