remove console log

This commit is contained in:
peterkogo
2025-10-01 09:36:01 +02:00
parent a31af8ecab
commit 4e67277b88

View File

@@ -235,8 +235,6 @@ export function createStore<NodeType extends Node = Node, EdgeType extends Edge
const nodeWillBeSelected = ids.includes(node.id);
const selected = isMultiSelection ? node.selected || nodeWillBeSelected : nodeWillBeSelected;
console.log(selected);
if (!!node.selected !== selected) {
// we need to mutate the node here in order to have the correct selected state in the drag handler
const internalNode = store.nodeLookup.get(node.id);