File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -185,20 +185,6 @@ function createTree(
185
185
_debugHookTypes,
186
186
} = currentFiber ;
187
187
188
- // if (currentFiber.tag === 10) {
189
- // const queue = [currentFiber];
190
- // while (queue.length > 0) {
191
- // const tempFiber = queue.shift();
192
- // if (tempFiber.tag === 0) console.log(tempFiber);
193
- // if (tempFiber.sibling) {
194
- // queue.push(tempFiber.sibling);
195
- // }
196
- // if (tempFiber.child) {
197
- // queue.push(tempFiber.child);
198
- // }
199
- // }
200
- // }
201
-
202
188
// check to see if we can get the information we were looking for
203
189
// need to figure out what tag is
204
190
if ( tag === 5 ) {
Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ const people: string[][] = [
77
77
]
78
78
79
79
function replace ( e : React . SyntheticEvent < HTMLImageElement > ) : void {
80
- console . log ( 'test' ) ;
81
80
e . currentTarget . onerror = null ;
82
81
e . currentTarget . src = "/profileFallback.png"
83
82
}
You can’t perform that action at this time.
0 commit comments