Minor formatting fix and log removal

This commit is contained in:
Austin Mroz
2025-09-04 15:02:50 -05:00
parent 985c0beb8e
commit 4150b1ccb4

View File

@@ -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
}
}
}
)