From 6b77fa74a1aa75e6280208d56ca100ca3f4feb97 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 27 Mar 2026 13:36:49 -0400 Subject: [PATCH] fix: remove bold font-weight from unread chats in agents sidebar (#23725) Removes the `font-semibold` class applied to unread chat titles in the `/agents` sidebar. The unread indicator dot already provides sufficient visual distinction for unread chats. --- site/src/pages/AgentsPage/components/Sidebar/AgentsSidebar.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/site/src/pages/AgentsPage/components/Sidebar/AgentsSidebar.tsx b/site/src/pages/AgentsPage/components/Sidebar/AgentsSidebar.tsx index 43bf102a0d..d9b15215bb 100644 --- a/site/src/pages/AgentsPage/components/Sidebar/AgentsSidebar.tsx +++ b/site/src/pages/AgentsPage/components/Sidebar/AgentsSidebar.tsx @@ -528,7 +528,6 @@ const ChatTreeNode: FC = ({ chat, isChildNode }) => { className={cn( "block flex-1 truncate text-[13px] text-content-primary", isActive && "font-medium", - chat.has_unread && !isActiveChat && "font-semibold", // Pulse-only in sidebar (no spinner) — space-constrained card layout. isRegeneratingThisChat && "animate-pulse", )}