From b81530ce6978ad1ecd98cfa4fae52d6ef77ab97b Mon Sep 17 00:00:00 2001 From: simosmik Date: Thu, 30 Apr 2026 10:34:03 +0000 Subject: [PATCH] fix: small labels --- src/components/command-palette/CommandPalette.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/command-palette/CommandPalette.tsx b/src/components/command-palette/CommandPalette.tsx index c50e0b78..db3bd87b 100644 --- a/src/components/command-palette/CommandPalette.tsx +++ b/src/components/command-palette/CommandPalette.tsx @@ -279,7 +279,7 @@ export default function CommandPalette({ {sessionsShown.map((s) => ( run(() => navigate(`/session/${s.id}`))} > @@ -305,7 +305,7 @@ export default function CommandPalette({ {filesShown.map((f) => ( run(() => ops.openFile(f.path))} > @@ -324,7 +324,7 @@ export default function CommandPalette({ {commitsShown.map((c) => ( run(() => onShowTab?.('git'))} > @@ -344,7 +344,7 @@ export default function CommandPalette({ {branchesShown.map((b) => ( run(() => { void git.checkout(b.name); onShowTab?.('git'); })} > @@ -365,7 +365,7 @@ export default function CommandPalette({ function BrowseAllItem({ label, onSelect }: { label: string; onSelect: () => void }) { return ( - + {label}