From 306fdf3882d74d5d9e00b5d83c68637d2cd8cc83 Mon Sep 17 00:00:00 2001 From: joshistoast Date: Wed, 25 Feb 2026 12:28:54 -0700 Subject: [PATCH] feat(model manager queue): remove backend status badge --- .../AddModelPanel/ModelInstallQueue/ModelInstallQueue.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/invokeai/frontend/web/src/features/modelManagerV2/subpanels/AddModelPanel/ModelInstallQueue/ModelInstallQueue.tsx b/invokeai/frontend/web/src/features/modelManagerV2/subpanels/AddModelPanel/ModelInstallQueue/ModelInstallQueue.tsx index 28a4c067f7..f49174fa90 100644 --- a/invokeai/frontend/web/src/features/modelManagerV2/subpanels/AddModelPanel/ModelInstallQueue/ModelInstallQueue.tsx +++ b/invokeai/frontend/web/src/features/modelManagerV2/subpanels/AddModelPanel/ModelInstallQueue/ModelInstallQueue.tsx @@ -1,6 +1,5 @@ import type { SystemStyleObject } from '@invoke-ai/ui-library'; import { - Badge, Box, Button, ButtonGroup, @@ -34,7 +33,6 @@ import { useResumeModelInstallMutation, } from 'services/api/endpoints/models'; import type { ModelInstallJob } from 'services/api/types'; -import { $isConnected } from 'services/events/stores'; import { ModelInstallQueueItem } from './ModelInstallQueueItem'; @@ -77,7 +75,6 @@ const ModelQueueTableSx: SystemStyleObject = { export const ModelInstallQueue = memo(() => { const { t } = useTranslation(); - const isConnected = useStore($isConnected); const { data } = useListModelInstallsQuery(); const [bulkActionInProgress, setBulkActionInProgress] = useState<'pause' | 'resume' | 'cancel' | null>(null); const bulkActionLockRef = useRef(false); @@ -238,7 +235,6 @@ export const ModelInstallQueue = memo(() => { {t('modelManager.installQueue')} - {!isConnected && {t('modelManager.backendDisconnected')}} {/* Bulk Actions */}