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);