From c89cefe52608552749a4d2107231648fbd5b08df Mon Sep 17 00:00:00 2001 From: Joel Date: Thu, 26 Sep 2024 11:50:46 +0800 Subject: [PATCH] chore: remove log --- web/app/components/workflow/nodes/if-else/node.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/app/components/workflow/nodes/if-else/node.tsx b/web/app/components/workflow/nodes/if-else/node.tsx index cf689d38b2..10ed789d51 100644 --- a/web/app/components/workflow/nodes/if-else/node.tsx +++ b/web/app/components/workflow/nodes/if-else/node.tsx @@ -14,7 +14,6 @@ const IfElseNode: FC> = (props) => { const { t } = useTranslation() const { cases } = data const casesLength = cases.length - console.log(cases) const checkIsConditionSet = useCallback((condition: Condition) => { if (!condition.variable_selector || condition.variable_selector.length === 0) return false