chore(utils): remove logs

This commit is contained in:
moklick
2024-06-26 15:45:05 +02:00
parent f968ff42ca
commit 08750d354f
2 changed files with 1 additions and 2 deletions
@@ -94,7 +94,6 @@ function ResizeControl({
),
},
};
console.log(child);
const parentExpandChanges = handleExpandParent([child], nodeLookup, parentLookup, nodeOrigin);
changes.push(...parentExpandChanges);
+1 -1
View File
@@ -159,7 +159,7 @@ export function handleExpandParent(
): (NodeDimensionChange | NodePositionChange)[] {
const changes: (NodeDimensionChange | NodePositionChange)[] = [];
const parentExpansions = new Map<string, { expandedRect: Rect; parent: InternalNodeBase }>();
console.log(children)
// determine the expanded rectangle the child nodes would take for each parent
for (const child of children) {
const parent = nodeLookup.get(child.parentId);