From f455d3edb2ce0daa2efabb2fe30bcefde0b7ce33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Fri, 18 Sep 2026 16:37:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=90=86=E6=9C=AA=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E7=9A=84=E7=95=8C=E9=9D=A2=E5=9B=BE=E6=A0=A1=E9=AA=8C=E7=A0=81?= =?UTF-8?q?=20=E7=A7=BB=E9=99=A4=E4=B8=8D=E4=BC=9A=E8=A2=AB=E5=8F=91?= =?UTF-8?q?=E5=87=BA=E7=9A=84=20missing-image=20=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/features/ui-editor/stateInvariants.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/ai-game-creator-shell/src/features/ui-editor/stateInvariants.ts b/apps/ai-game-creator-shell/src/features/ui-editor/stateInvariants.ts index bcac9112a..9d14e1f44 100644 --- a/apps/ai-game-creator-shell/src/features/ui-editor/stateInvariants.ts +++ b/apps/ai-game-creator-shell/src/features/ui-editor/stateInvariants.ts @@ -2,11 +2,7 @@ import type { Node } from './types/Node'; import type { State } from './types/State'; export type UiDesignInvariantIssue = { - code: - | 'missing-image' - | 'duplicate-node' - | 'invalid-image' - | 'missing-tree-image'; + code: 'duplicate-node' | 'invalid-image' | 'missing-tree-image'; message: string; };