From 6e903162855bb3c0531a7b651d3f87473c24bfd9 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Wed, 18 Feb 2026 17:51:41 +0800 Subject: [PATCH] refactor: remove unused imports in CliViewerToolbar and QueuePanel components --- ccw/frontend/src/components/cli-viewer/CliViewerToolbar.tsx | 2 +- ccw/frontend/src/components/terminal-dashboard/QueuePanel.tsx | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/ccw/frontend/src/components/cli-viewer/CliViewerToolbar.tsx b/ccw/frontend/src/components/cli-viewer/CliViewerToolbar.tsx index 87ee4879..a5b4ff89 100644 --- a/ccw/frontend/src/components/cli-viewer/CliViewerToolbar.tsx +++ b/ccw/frontend/src/components/cli-viewer/CliViewerToolbar.tsx @@ -37,7 +37,7 @@ import { DialogTrigger, } from '@/components/ui/Dialog'; import { Input } from '@/components/ui/Input'; -import { Search, Clock, CheckCircle2, XCircle, Loader2 } from 'lucide-react'; +import { Search, Clock } from 'lucide-react'; import { useViewerStore, useViewerLayout, diff --git a/ccw/frontend/src/components/terminal-dashboard/QueuePanel.tsx b/ccw/frontend/src/components/terminal-dashboard/QueuePanel.tsx index c74fd8e7..a089212a 100644 --- a/ccw/frontend/src/components/terminal-dashboard/QueuePanel.tsx +++ b/ccw/frontend/src/components/terminal-dashboard/QueuePanel.tsx @@ -12,7 +12,6 @@ import { ListChecks, Loader2, AlertTriangle, - ArrowDownToLine, Clock, CheckCircle, XCircle, @@ -150,7 +149,7 @@ function QueueItemRow({ // ========== Queue Tab: Content ========== -function QueueTabContent({ embedded = false }: { embedded?: boolean }) { +function QueueTabContent(_props: { embedded?: boolean }) { const { formatMessage } = useIntl(); const queueQuery = useIssueQueue(); const associationChain = useIssueQueueIntegrationStore(selectAssociationChain);