Skip to content

Commit 09326df

Browse files
(added) added console.logs ins Tree
1 parent 91b2122 commit 09326df

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/app/components/Tree.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ interface TreeProps {
4949

5050
const Tree = (props: TreeProps) => {
5151
const { snapshot } = props;
52+
console.log('inside tree props:', props);
5253

5354
return (
5455
<>

src/app/containers/MainContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function MainContainer(): any {
126126
snapshots,
127127
hierarchy,
128128
} = tabs[currentTab];
129-
129+
console.log('inside MainContainer, hierarchy:', hierarchy)
130130
// if viewIndex is -1, then use the sliderIndex instead
131131
const snapshotView = viewIndex === -1 ? snapshots[sliderIndex] : snapshots[viewIndex];
132132
// cleaning hierarchy and snapshotView from stateless data

0 commit comments

Comments
 (0)