Skip to content

Commit fb273d5

Browse files
committed
commented out console logs
1 parent 0f8cd8e commit fb273d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/linkFiber.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ function createTree(
313313
// We then store them along with the corresponding memoizedState.queue,
314314
// which includes the dispatch() function we use to change their state.
315315
const hooksStates = traverseRecoilHooks(memoizedState, memoizedProps);
316-
console.log("hookStates: ", hooksStates);
316+
// console.log("hookStates: ", hooksStates);
317317
hooksStates.forEach((state, i) => {
318318
hooksIndex = componentActionsRecord.saveNew(
319319
state.state,
@@ -416,7 +416,7 @@ function createTree(
416416
// remove existing rtid before adding a new one
417417
if (pointer.stateNode.classList.length > 0) {
418418
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"));
420420
if (lastClass.includes("fromLinkFiber")) {
421421
pointer.stateNode.classList.remove(lastClass);
422422
}
@@ -434,7 +434,7 @@ function createTree(
434434
// remove existing rtid before adding a new one
435435
if (currentFiber.child.stateNode.classList.length > 0) {
436436
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"));
438438
if (lastClass.includes("fromLinkFiber")) {
439439
currentFiber.child.stateNode.classList.remove(lastClass);
440440
}

0 commit comments

Comments
 (0)