chore: remove a single console.log that wasn't needed... :)

This commit is contained in:
Björn Otgaar
2025-11-19 10:21:46 +01:00
parent f37df1c726
commit 1f70ebd799

View File

@@ -73,8 +73,6 @@ function addNode(nodeType: keyof typeof NodeTypes, position: XYPosition) {
position,
data: {...defaultData}
}
console.log("Tried to add node");
setNodes([...nodes, newNode]);
}