diff --git a/src/frontend/src/utils/reactflowUtils.ts b/src/frontend/src/utils/reactflowUtils.ts index b69e61351..9ddfa5dcb 100644 --- a/src/frontend/src/utils/reactflowUtils.ts +++ b/src/frontend/src/utils/reactflowUtils.ts @@ -534,6 +534,9 @@ function updateGroupNodeTemplate(template: APITemplateType) { ) { template[key].advanced = true; } + if(type==="code" && template[key].proxy?.id.includes("CustomComponent")){ + template[key].show = false; + } }); return template; }