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.
This commit is contained in:
Kyle Carberry
2026-03-27 13:36:49 -04:00
committed by GitHub
parent 25e9fa7120
commit 6b77fa74a1
@@ -528,7 +528,6 @@ const ChatTreeNode: FC<ChatTreeNodeProps> = ({ 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",
)}