From e97a600ca3f3246ee149bb2fe59936b46fc1682f Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Thu, 5 Oct 2023 19:51:35 -0300 Subject: [PATCH] remove console.log --- src/frontend/src/utils/reactflowUtils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/frontend/src/utils/reactflowUtils.ts b/src/frontend/src/utils/reactflowUtils.ts index 6cc5ebe87..a6811ee4d 100644 --- a/src/frontend/src/utils/reactflowUtils.ts +++ b/src/frontend/src/utils/reactflowUtils.ts @@ -506,7 +506,6 @@ export function validateSelection( // first creates a set of all the nodes ids let nodesSet = new Set(selection.nodes.map((n) => n.id)); // then filter the edges that are connected to the nodes in the set - console.log(nodesSet) let connectedEdges = selection.edges.filter( (e) => nodesSet.has(e.source) && nodesSet.has(e.target) );