From 4150b1ccb4aef719fe15b25ece453c915436cfff Mon Sep 17 00:00:00 2001 From: Austin Mroz Date: Thu, 4 Sep 2025 15:02:50 -0500 Subject: [PATCH] Minor formatting fix and log removal --- src/scripts/app.ts | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/scripts/app.ts b/src/scripts/app.ts index a30db3b8f..ba3684528 100644 --- a/src/scripts/app.ts +++ b/src/scripts/app.ts @@ -848,16 +848,15 @@ export class ComfyApp { // Assertions: UnwrapRef for (const widgetId of widgetStore.widgetStates.keys()) { - const widgetState = widgetStore - .widgetStates.get(widgetId) - if (widgetId in widgetIds) { - widgetState.active = true - widgetState.widget = widgetIds[widgetId] - } else { - widgetState.active = false - } - } - console.log(widgetStore.widgetStates) + const widgetState = widgetStore + .widgetStates.get(widgetId) + if (widgetId in widgetIds) { + widgetState.active = true + widgetState.widget = widgetIds[widgetId] + } else { + widgetState.active = false + } + } } )