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 = () => {