@@ -313,7 +313,7 @@ function createTree(
313
313
// We then store them along with the corresponding memoizedState.queue,
314
314
// which includes the dispatch() function we use to change their state.
315
315
const hooksStates = traverseRecoilHooks ( memoizedState , memoizedProps ) ;
316
- console . log ( "hookStates: " , hooksStates ) ;
316
+ // console.log("hookStates: ", hooksStates);
317
317
hooksStates . forEach ( ( state , i ) => {
318
318
hooksIndex = componentActionsRecord . saveNew (
319
319
state . state ,
@@ -416,7 +416,7 @@ function createTree(
416
416
// remove existing rtid before adding a new one
417
417
if ( pointer . stateNode . classList . length > 0 ) {
418
418
let lastClass = pointer . stateNode . classList [ pointer . stateNode . classList . length - 1 ] ;
419
- console . log ( "last class: " , lastClass , "linkFiber class? " , lastClass . includes ( "fromLinkFiber" ) ) ;
419
+ // console.log("last class: ", lastClass, "linkFiber class? ", lastClass.includes("fromLinkFiber"));
420
420
if ( lastClass . includes ( "fromLinkFiber" ) ) {
421
421
pointer . stateNode . classList . remove ( lastClass ) ;
422
422
}
@@ -434,7 +434,7 @@ function createTree(
434
434
// remove existing rtid before adding a new one
435
435
if ( currentFiber . child . stateNode . classList . length > 0 ) {
436
436
let lastClass = currentFiber . child . stateNode . classList [ currentFiber . child . stateNode . classList . length - 1 ] ;
437
- console . log ( "lastClass: " , lastClass , "linkFiber class? " , lastClass . includes ( "fromLinkFiber" ) ) ;
437
+ // console.log("lastClass: ", lastClass, "linkFiber class? ", lastClass.includes("fromLinkFiber"));
438
438
if ( lastClass . includes ( "fromLinkFiber" ) ) {
439
439
currentFiber . child . stateNode . classList . remove ( lastClass ) ;
440
440
}
0 commit comments