Skip to content

Commit d3616b0

Browse files
(add) added console.log to the ComponentMap file
1 parent 09326df commit d3616b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/components/ComponentMap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const ComponentMap = (props: componentMapProps) => {
2929
const width: any = '100vw';
3030
const height: any = '100vh';
3131
let data: Object = snapshots[lastSnap];
32-
32+
console.log('inside ComponentMap, data', data)
3333
useEffect(() => {
3434
document.getElementById('canvas').innerHTML = '_';
3535
setZoomState(d3.zoomTransform(d3.select('#canvas').node()));

src/backend/linkFiber.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ function createTree(
341341
} else {
342342
newNode = tree;
343343
}
344-
344+
console.log('inside LinkFiber, circularComponentTable:', circularComponentTable);
345345
// Recurse on children
346346
if (child && !circularComponentTable.has(child)) {
347347
// If this node had state we appended to the children array,

0 commit comments

Comments
 (0)