We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b2122 commit 09326dfCopy full SHA for 09326df
src/app/components/Tree.tsx
@@ -49,6 +49,7 @@ interface TreeProps {
49
50
const Tree = (props: TreeProps) => {
51
const { snapshot } = props;
52
+ console.log('inside tree props:', props);
53
54
return (
55
<>
src/app/containers/MainContainer.tsx
@@ -126,7 +126,7 @@ function MainContainer(): any {
126
snapshots,
127
hierarchy,
128
} = tabs[currentTab];
129
-
+ console.log('inside MainContainer, hierarchy:', hierarchy)
130
// if viewIndex is -1, then use the sliderIndex instead
131
const snapshotView = viewIndex === -1 ? snapshots[sliderIndex] : snapshots[viewIndex];
132
// cleaning hierarchy and snapshotView from stateless data
0 commit comments