File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -288,7 +288,6 @@ function createTree(
288
288
( tag === 0 || tag === 1 || tag === 2 || tag === 10 ) &&
289
289
isRecoil === true
290
290
) {
291
- // console.log('Recoil Hooks Algo', currentFiber)
292
291
if ( memoizedState . queue ) {
293
292
// Hooks states are stored as a linked list using memoizedState.next,
294
293
// so we must traverse through the list and get the states.
@@ -322,7 +321,6 @@ function createTree(
322
321
( tag === 0 || tag === 1 || tag === 2 || tag === 10 ) &&
323
322
isRecoil === false
324
323
) {
325
- // console.log('Regular Hooks Algo', currentFiber)
326
324
if ( memoizedState . queue ) {
327
325
// Hooks states are stored as a linked list using memoizedState.next,
328
326
// so we must traverse through the list and get the states.
@@ -351,7 +349,6 @@ function createTree(
351
349
352
350
// This grabs stateless components
353
351
if ( ! componentFound && ( tag === 0 || tag === 1 || tag === 2 ) ) {
354
- // console.log('Stateless Algo', currentFiber)
355
352
newState = 'stateless' ;
356
353
}
357
354
You can’t perform that action at this time.
0 commit comments