File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/app/components/StateRoute/ComponentMap Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,10 @@ export default function ComponentMap({
168
168
} ;
169
169
170
170
collectNodes ( currentSnapshot ) ;
171
+
172
+ console . log ( 'nodelist: ' , nodeList ) ;
173
+ console . log ( 'currentSnapshot component map: ' , currentSnapshot ) ;
174
+
171
175
// @ts
172
176
// find the node that has been selected and use it as the root
173
177
let startNode = null ;
@@ -184,8 +188,6 @@ export default function ComponentMap({
184
188
185
189
findSelectedNode ( ) ; // locates the rootNode... do we really need this? This function is only used once... it's here.
186
190
187
- console . log ( 'startNode: ' , startNode ) ;
188
-
189
191
// controls for the map
190
192
const LinkComponent : React . ComponentType < unknown > = getLinkComponent ( {
191
193
layout,
@@ -258,8 +260,6 @@ export default function ComponentMap({
258
260
259
261
if ( layout === 'polar' ) {
260
262
const [ radialX , radialY ] = pointRadial ( node . x , node . y ) ;
261
- console . log ( 'component map, radial x y' , radialX , radialY ) ;
262
- console . log ( 'component map node.x, node.y:' , node . x , node . y ) ;
263
263
top = radialY ;
264
264
left = radialX ;
265
265
} else if ( orientation === 'vertical' ) {
You can’t perform that action at this time.
0 commit comments