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}