From 1f70ebd799f0657cb5d26273420d1a4390fa9ad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Otgaar?= Date: Wed, 19 Nov 2025 10:21:46 +0100 Subject: [PATCH] chore: remove a single console.log that wasn't needed... :) --- .../visualProgrammingUI/components/DragDropSidebar.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/VisProgPage/visualProgrammingUI/components/DragDropSidebar.tsx b/src/pages/VisProgPage/visualProgrammingUI/components/DragDropSidebar.tsx index 40f6dbd..97b563b 100644 --- a/src/pages/VisProgPage/visualProgrammingUI/components/DragDropSidebar.tsx +++ b/src/pages/VisProgPage/visualProgrammingUI/components/DragDropSidebar.tsx @@ -73,8 +73,6 @@ function addNode(nodeType: keyof typeof NodeTypes, position: XYPosition) { position, data: {...defaultData} } - - console.log("Tried to add node"); setNodes([...nodes, newNode]); }