From 17bb4fe0621c23f180e1deaaeccaa51150d94900 Mon Sep 17 00:00:00 2001 From: Ipriyankrajai Date: Thu, 5 Feb 2026 15:39:36 +0530 Subject: [PATCH] fix(desktop): update TopBar to display project and workspace names together --- .../_authenticated/_dashboard/components/TopBar/TopBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/TopBar.tsx b/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/TopBar.tsx index f75e02dc397..688d4c51a99 100644 --- a/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/TopBar.tsx +++ b/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/TopBar.tsx @@ -33,8 +33,8 @@ export function TopBar() { {workspace?.project?.name && (
- - {workspace.project.name} + + {[workspace.project.name, workspace.name].filter(Boolean).join(" - ")}
)}