From a8406472fbb2ccd12a3e1583e1e40695056ea324 Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 2 May 2023 22:45:44 -0300 Subject: [PATCH] removed console.log --- src/frontend/src/utils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/frontend/src/utils.ts b/src/frontend/src/utils.ts index 9b08756c0..161606e2c 100644 --- a/src/frontend/src/utils.ts +++ b/src/frontend/src/utils.ts @@ -400,7 +400,6 @@ export function removeApiKeys(flow: FlowType): FlowType { cleanFLow.data.nodes.forEach((node) => { for (const key in node.data.node.template) { if (key.includes("api")) { - console.log(node.data.node.template[key]); node.data.node.template[key].value = ""; } }