removed rogue console log

Noticed that I was getting a random log when clicking/dragging nodes with a fresh npm install of @xyflow/svelte. Removing to avoid confusion.
This commit is contained in:
Abinadi Cordova
2023-08-04 16:09:24 -04:00
committed by GitHub
parent 3af4bf23a4
commit 0267485487

View File

@@ -36,9 +36,6 @@ export default function drag(domNode: Element, params: UseDragParams) {
updateNodePositions: store.updateNodePositions,
panBy: store.panBy
};
},
onNodeClick: () => {
console.log('node click');
}
});