From 6b06e7f86b3ed2dae321c0640870aabdee8e2807 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Sat, 28 Mar 2026 14:47:57 +0100 Subject: [PATCH] fix(ui): remove shortcuts bar from Dashboard --- ui/src/pages/Dashboard/Dashboard.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/ui/src/pages/Dashboard/Dashboard.tsx b/ui/src/pages/Dashboard/Dashboard.tsx index 6c4b3b26..cd9986fa 100644 --- a/ui/src/pages/Dashboard/Dashboard.tsx +++ b/ui/src/pages/Dashboard/Dashboard.tsx @@ -3,7 +3,6 @@ import { useParams, useNavigate, useSearchParams } from 'react-router' import { AlertTriangle, X, Search } from 'lucide-react' import { DataTable, - ShortcutsBar, StatusDot, MonoText, Badge, @@ -175,13 +174,6 @@ function buildBaseColumns(): Column[] { ] } -const SHORTCUTS = [ - { keys: 'Ctrl+K', label: 'Search' }, - { keys: '\u2191\u2193', label: 'Navigate rows' }, - { keys: 'Enter', label: 'Open detail' }, - { keys: 'Esc', label: 'Close panel' }, -] - // ─── Dashboard component ───────────────────────────────────────────────────── export default function Dashboard() { @@ -298,9 +290,6 @@ export default function Dashboard() { /> - - {/* Shortcuts bar */} - ) }