-
-
+
+
{customTitle || conversation.title}
- {conversation.metadata?.description && (
+ {/* Live activity status badge - small, icon only */}
+ {liveActivity?.status && (
+
+ )}
+ {/* Show host for live activities */}
+ {liveActivity?.hostPubkey && (
+
+ by{" "}
+
+
+ )}
+ {/* Show description for groups */}
+ {!liveActivity && conversation.metadata?.description && (
{conversation.metadata.description}
@@ -360,9 +466,10 @@ export function ChatViewer({
-
+
- {conversation.type === "group" && (
+ {(conversation.type === "group" ||
+ conversation.type === "live-chat") && (