diff --git a/src/frontend/src/CustomNodes/GenericNode/components/outputModal/components/switchOutputView/index.tsx b/src/frontend/src/CustomNodes/GenericNode/components/outputModal/components/switchOutputView/index.tsx index 10e85f004..4a8322eee 100644 --- a/src/frontend/src/CustomNodes/GenericNode/components/outputModal/components/switchOutputView/index.tsx +++ b/src/frontend/src/CustomNodes/GenericNode/components/outputModal/components/switchOutputView/index.tsx @@ -27,7 +27,6 @@ const SwitchOutputView: React.FC = ({ ]; let results = flowPoolNode?.data?.logs[outputName] ?? ""; if (Array.isArray(results)) { - console.error("Log results are an array", results); return; } const resultType = results?.type;