From 4224f9d511f5dfe15766a648a93bed69ebc8d4a2 Mon Sep 17 00:00:00 2001 From: klopez4212 Date: Sat, 4 Jul 2026 11:37:23 +0100 Subject: [PATCH] Drop the leading icon from the chat header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The chat title stands alone in the header — the MessageCircle glyph added no information. Other modes keep their icons. Co-Authored-By: Claude Fable 5 --- desktop/src/features/chat/ui/ChatHeader.tsx | 26 ++++++++++----------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/desktop/src/features/chat/ui/ChatHeader.tsx b/desktop/src/features/chat/ui/ChatHeader.tsx index 92477d0a2..1421b5cfe 100644 --- a/desktop/src/features/chat/ui/ChatHeader.tsx +++ b/desktop/src/features/chat/ui/ChatHeader.tsx @@ -8,7 +8,6 @@ import { Hash, House, Lock, - MessageCircle, Zap, } from "lucide-react"; import type * as React from "react"; @@ -78,10 +77,6 @@ function ChannelIcon({ return ; } - if (mode === "chats") { - return ; - } - if (mode === "workflows") { return ; } @@ -153,15 +148,18 @@ export function ChatHeader({
-
- {leadingContent ?? ( - - )} -
+ {/* Chats render no leading icon — the title stands alone. */} + {leadingContent || mode !== "chats" ? ( +
+ {leadingContent ?? ( + + )} +
+ ) : null}