From 48d8d80771e25b833055b0dc5327a5ef7ef74f77 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Thu, 4 Jun 2026 17:40:35 -0500 Subject: [PATCH] feat(desktop): single-profile rail shows default icon + create Left-align the default's home icon next to the create "+" in the single-profile state (toggle/squares/Manage still appear only once a second profile exists). --- apps/desktop/src/app/chat/sidebar/profile-switcher.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/desktop/src/app/chat/sidebar/profile-switcher.tsx b/apps/desktop/src/app/chat/sidebar/profile-switcher.tsx index f5ccd632c2..6fd4e116d5 100644 --- a/apps/desktop/src/app/chat/sidebar/profile-switcher.tsx +++ b/apps/desktop/src/app/chat/sidebar/profile-switcher.tsx @@ -184,6 +184,11 @@ export function ProfileRail() { setShowAllProfiles(true)} /> ))} + {/* Single-profile: the active default's home icon next to the create +. */} + {!multiProfile && defaultProfile && ( + selectProfile(defaultProfile.name)} /> + )} +