From 64fa343d163e5a9d15da7b8500317ea7dc85bb14 Mon Sep 17 00:00:00 2001 From: Joel Date: Wed, 13 Mar 2024 11:24:20 +0800 Subject: [PATCH] chore: remove log --- .../nodes/_base/components/variable/var-reference-picker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/workflow/nodes/_base/components/variable/var-reference-picker.tsx b/web/app/components/workflow/nodes/_base/components/variable/var-reference-picker.tsx index 1fe967113b..46c1ff0bd9 100644 --- a/web/app/components/workflow/nodes/_base/components/variable/var-reference-picker.tsx +++ b/web/app/components/workflow/nodes/_base/components/variable/var-reference-picker.tsx @@ -52,7 +52,7 @@ const VarReferencePicker: FC = ({ const hasValue = value.length > 0 const outputVarNodeId = hasValue ? value[0] : '' const outputVarNode = hasValue ? getNodeInfoById(availableNodes, outputVarNodeId)?.data : null - console.log(hasValue, value, outputVarNode) + // console.log(hasValue, value, outputVarNode) const varName = hasValue ? value[value.length - 1] : '' // TODO: get var type through node and value const getVarType = () => {