From 0a776ff3584ab78f15a650d90201893df8637861 Mon Sep 17 00:00:00 2001 From: kjs Date: Fri, 24 Oct 2025 18:08:18 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=9C=EC=96=B4=EA=B4=80=EB=A6=AC=20?= =?UTF-8?q?=EC=99=BC=EC=AA=BD=20=EB=A9=94=EB=89=B4=20=EB=8B=AB=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/dataflow/node-editor/sidebar/NodePalette.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/dataflow/node-editor/sidebar/NodePalette.tsx b/frontend/components/dataflow/node-editor/sidebar/NodePalette.tsx index 0167069d..80eb1ef9 100644 --- a/frontend/components/dataflow/node-editor/sidebar/NodePalette.tsx +++ b/frontend/components/dataflow/node-editor/sidebar/NodePalette.tsx @@ -11,7 +11,7 @@ import type { NodePaletteItem } from "@/types/node-editor"; export function NodePalette() { const [expandedCategories, setExpandedCategories] = useState>( - new Set(["source", "transform", "action", "utility"]), + new Set(), // 기본적으로 모든 아코디언 닫힘 ); const toggleCategory = (categoryId: string) => {