Skip to content

Commit e18956b

Browse files
committed
cleaned code
1 parent f00b6de commit e18956b

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

src/backend/linkFiber.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -185,20 +185,6 @@ function createTree(
185185
_debugHookTypes,
186186
} = currentFiber;
187187

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-
202188
// check to see if we can get the information we were looking for
203189
// need to figure out what tag is
204190
if (tag === 5) {

www/src/pages/components/TeamSection.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ const people: string[][] = [
7777
]
7878

7979
function replace(e: React.SyntheticEvent<HTMLImageElement>): void{
80-
console.log('test');
8180
e.currentTarget.onerror = null;
8281
e.currentTarget.src = "/profileFallback.png"
8382
}

0 commit comments

Comments
 (0)