From 5226b50c2e3e1de853352c9ef425515dca93e3ab Mon Sep 17 00:00:00 2001 From: Usama Date: Mon, 23 Feb 2026 15:03:51 +0000 Subject: [PATCH] - conversation header empty if name fix --- .../components/layout/ProjectConversationLayout.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/echo/frontend/src/components/layout/ProjectConversationLayout.tsx b/echo/frontend/src/components/layout/ProjectConversationLayout.tsx index dfd1a059..92e7492c 100644 --- a/echo/frontend/src/components/layout/ProjectConversationLayout.tsx +++ b/echo/frontend/src/components/layout/ProjectConversationLayout.tsx @@ -17,14 +17,11 @@ export const ProjectConversationLayout = () => { }, }, fields: [ - "id", "participant_name", + "title", "duration", - "is_finished", - "is_audio_processing_finished", - "created_at", - "updated_at", - { chunks: ["source", "transcript"] }, + "source", + { chunks: ["source"] }, ], }, }); @@ -32,7 +29,8 @@ export const ProjectConversationLayout = () => { return ( - {conversationQuery.data?.participant_name ?? "Conversation"} + {conversationQuery.data?.participant_name || + conversationQuery.data?.title} {conversationQuery.data && (