From 6beda51ad7fd5f34b3960058dd658a233a24d4b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20G=C3=B3mez?= Date: Mon, 12 Jan 2026 13:31:45 +0100 Subject: [PATCH] ui: don't show chat description --- src/components/ChatViewer.tsx | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/components/ChatViewer.tsx b/src/components/ChatViewer.tsx index 8cf190a..77bef60 100644 --- a/src/components/ChatViewer.tsx +++ b/src/components/ChatViewer.tsx @@ -436,11 +436,11 @@ export function ChatViewer({ return (
{/* Header with conversation info and controls */} -
-
+
+
-

+

{customTitle || conversation.title}

{/* Live activity status badge - small, icon only */} @@ -457,12 +457,6 @@ export function ChatViewer({ /> )} - {/* Show description for groups */} - {!liveActivity && conversation.metadata?.description && ( -

- {conversation.metadata.description} -

- )}