From f3b7df3f4d1296027cadbe389e0a89e7cd3c96d0 Mon Sep 17 00:00:00 2001 From: ciregenz Date: Fri, 3 Jul 2026 15:53:55 -0700 Subject: [PATCH] [eric] palette: Go to Skills/Actions opens Settings tabs; drop Go to Modes (routes died in #118 + modes-removal) --- .../src/app/components/overlays/GlobalSearchPalette.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/components/overlays/GlobalSearchPalette.tsx b/frontend/src/app/components/overlays/GlobalSearchPalette.tsx index 2c86b398..e792e4c9 100644 --- a/frontend/src/app/components/overlays/GlobalSearchPalette.tsx +++ b/frontend/src/app/components/overlays/GlobalSearchPalette.tsx @@ -53,7 +53,6 @@ const ACTIONS: ActionResult[] = [ { kind: 'action', id: 'settings-models', name: 'Connect a model', keywords: 'settings models api key provider subscription' }, { kind: 'action', id: 'go-skills', name: 'Go to Skills', keywords: 'customize skills' }, { kind: 'action', id: 'go-actions', name: 'Go to Actions', keywords: 'customize tools actions mcp' }, - { kind: 'action', id: 'go-modes', name: 'Go to Modes', keywords: 'customize modes' }, { kind: 'action', id: 'all-dashboards', name: 'All dashboards', keywords: 'overview picker browse boards' }, ]; @@ -149,9 +148,9 @@ const GlobalSearchPalette: React.FC = ({ open, onClose }) => { break; case 'settings': dispatch(openSettingsModal()); break; case 'settings-models': dispatch(openSettingsModal('models')); break; - case 'go-skills': navigate('/skills'); break; - case 'go-actions': navigate('/actions'); break; - case 'go-modes': navigate('/modes'); break; + // Skills/Actions live in Settings now (the sidebar Customization section moved there). + case 'go-skills': dispatch(openSettingsModal('skills')); break; + case 'go-actions': dispatch(openSettingsModal('tools')); break; case 'all-dashboards': navigate('/'); break; } }, [dispatch, navigate]);