refactor: remove unused imports in CliViewerToolbar and QueuePanel components

This commit is contained in:
catlog22
2026-02-18 17:51:41 +08:00
parent 49891e35f8
commit 6e90316285
2 changed files with 2 additions and 3 deletions

View File

@@ -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,

View File

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