From 404478ff65d6537948402d1d60ef572d75f62bbf Mon Sep 17 00:00:00 2001 From: Le-King-Fu Date: Mon, 16 Feb 2026 23:30:42 +0000 Subject: [PATCH] fix: always show profile switcher in sidebar (#2) ProfileSwitcher was hidden when only one profile existed, making it impossible to access "Manage Profiles" to create additional profiles. Co-Authored-By: Claude Opus 4.6 --- src/components/profile/ProfileSwitcher.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/profile/ProfileSwitcher.tsx b/src/components/profile/ProfileSwitcher.tsx index 32b0daf..518528c 100644 --- a/src/components/profile/ProfileSwitcher.tsx +++ b/src/components/profile/ProfileSwitcher.tsx @@ -25,8 +25,6 @@ export default function ProfileSwitcher() { return () => document.removeEventListener("mousedown", handleClick); }, [open]); - if (profiles.length <= 1) return null; - const handleSelect = (profile: Profile) => { setOpen(false); if (profile.id === activeProfile?.id) return;