From c538ffea269b5731f3e327a1576ede1700d017ae Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Mon, 13 May 2024 16:43:42 +1000 Subject: [PATCH] tidy(ui): remove console.log --- .../features/nodes/util/graph/addGenerationTabControlLayers.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/nodes/util/graph/addGenerationTabControlLayers.ts b/invokeai/frontend/web/src/features/nodes/util/graph/addGenerationTabControlLayers.ts index 0647d52502..1afa21ba9f 100644 --- a/invokeai/frontend/web/src/features/nodes/util/graph/addGenerationTabControlLayers.ts +++ b/invokeai/frontend/web/src/features/nodes/util/graph/addGenerationTabControlLayers.ts @@ -119,7 +119,6 @@ export const addGenerationTabControlLayers = async ( g.addEdge(regionalPosCond, 'conditioning', posCondCollect, 'item'); // Copy the connections to the "global" positive conditioning node to the regional cond for (const edge of g.getEdgesTo(posCond)) { - console.log(edge); if (edge.destination.field !== 'prompt') { // Clone the edge, but change the destination node to the regional conditioning node const clone = deepClone(edge);