From e8b399b29bcaeddcaedce41b3fe7dd61eb6f3196 Mon Sep 17 00:00:00 2001 From: fllipeis Date: Tue, 4 Aug 2026 19:46:46 +0200 Subject: [PATCH] fix(web): truncate long project switcher names --- apps/web/src/components/chat/DraftHeroHeadline.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/chat/DraftHeroHeadline.tsx b/apps/web/src/components/chat/DraftHeroHeadline.tsx index 4407e621525..0a76fcd449b 100644 --- a/apps/web/src/components/chat/DraftHeroHeadline.tsx +++ b/apps/web/src/components/chat/DraftHeroHeadline.tsx @@ -101,7 +101,8 @@ export function DraftHeroHeadline({ {activeProjectDisplayName ?? "Choose a project"} @@ -122,7 +123,9 @@ export function DraftHeroHeadline({ {projectPickerEntries.map(({ group }) => { return ( - {group.displayName} + + {group.displayName} + ); })}