Remove debug console log from TreeDragOverlay component

This commit is contained in:
Gregory Schier
2025-10-15 14:08:21 -07:00
parent 19cae33382
commit d46479cd22

View File

@@ -28,7 +28,6 @@ export function TreeDragOverlay<T extends { id: string }>({
children: draggingItems
.map((id) => {
const child = selectableItems.find((i2) => {
console.log('i2', i2);
return i2.node.item.id === id;
})?.node;
return child == null ? null : { ...child, children: undefined };