Skip to content

Commit 4e6cf38

Browse files
removed console.logs from timeJump
1 parent ce05de7 commit 4e6cf38

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/backend/timeJump.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,12 @@ export default (origin, mode) => {
2626
// Recursively change state of tree
2727
// Set the state of the origin tree if the component is stateful
2828
function jump(target, firstCall = false) {
29-
// console.log('INSIDE JUMP FUNCTION, TARGET', target)
3029
if (!target) return;
3130

3231
if (target.state === 'stateless') {
3332
target.children.forEach(child => jump(child));
3433
return;
3534
}
36-
console.log('COMPONENT ACTION RECORD:', circularComponentTable)
3735
const component = componentActionsRecord.getComponentByIndex(
3836
target.componentData.index,
3937
);

0 commit comments

Comments
 (0)