From 3bf470f83f2d4b016c4b60ebe5b69e89676a8a0d Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 9 Apr 2026 08:33:38 +0200 Subject: [PATCH] fix: narrow DEPLOY_STATUS_DOT type to match StatusDotVariant Fixes pre-existing TS2322 where Record was not assignable to the StatusDotVariant union type. Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/pages/AppsTab/AppsTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/pages/AppsTab/AppsTab.tsx b/ui/src/pages/AppsTab/AppsTab.tsx index 46c33a25..3363085e 100644 --- a/ui/src/pages/AppsTab/AppsTab.tsx +++ b/ui/src/pages/AppsTab/AppsTab.tsx @@ -51,7 +51,7 @@ const STATUS_COLORS: Record = { +const DEPLOY_STATUS_DOT: Record = { RUNNING: 'live', STARTING: 'running', DEGRADED: 'stale', STOPPING: 'stale', STOPPED: 'dead', FAILED: 'error', };