From ddf2d9e0e82930c3ec676ffc53dece2ee6021915 Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Wed, 3 Sep 2025 13:46:15 +0000 Subject: [PATCH] fix: remove unused import causing TypeScript error --- frontend-modern/src/components/Dashboard/Dashboard.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend-modern/src/components/Dashboard/Dashboard.tsx b/frontend-modern/src/components/Dashboard/Dashboard.tsx index 3cc1de565..2c7dd1cf3 100644 --- a/frontend-modern/src/components/Dashboard/Dashboard.tsx +++ b/frontend-modern/src/components/Dashboard/Dashboard.tsx @@ -3,7 +3,6 @@ import type { VM, Container, Node } from '@/types/api'; import { GuestRow } from './GuestRow'; import { useWebSocket } from '@/App'; import { getAlertStyles } from '@/utils/alerts'; -import { getNodeColor } from '@/utils/nodeColors'; import { createTooltipSystem } from '@/components/shared/Tooltip'; import { ComponentErrorBoundary } from '@/components/ErrorBoundary'; import { ScrollableTable } from '@/components/shared/ScrollableTable';