From 85161650bca9ddf9115e66db5156fad77ab64a7d Mon Sep 17 00:00:00 2001 From: Cristhian Zanforlin Lousa <72977554+Cristhianzl@users.noreply.github.com> Date: Fri, 12 Jul 2024 18:13:32 -0300 Subject: [PATCH] feat: Add the ability to hide/show components without input/output (I/O). (#2669) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ♻️ (use-row-data.tsx): remove redundant check for LANGFLOW_SUPPORTED_TYPES in useRowData hook --- src/frontend/src/modals/editNodeModal/hooks/use-row-data.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/frontend/src/modals/editNodeModal/hooks/use-row-data.tsx b/src/frontend/src/modals/editNodeModal/hooks/use-row-data.tsx index 375b3337f..b7afa11f5 100644 --- a/src/frontend/src/modals/editNodeModal/hooks/use-row-data.tsx +++ b/src/frontend/src/modals/editNodeModal/hooks/use-row-data.tsx @@ -15,7 +15,6 @@ const useRowData = ( return ( key.charAt(0) !== "_" && templateParam.show && - LANGFLOW_SUPPORTED_TYPES.has(templateParam.type) && !( (key === "code" && templateParam.type === "code") || (key.includes("code") && templateParam.proxy)