We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce05de7 commit 4e6cf38Copy full SHA for 4e6cf38
src/backend/timeJump.ts
@@ -26,14 +26,12 @@ export default (origin, mode) => {
26
// Recursively change state of tree
27
// Set the state of the origin tree if the component is stateful
28
function jump(target, firstCall = false) {
29
- // console.log('INSIDE JUMP FUNCTION, TARGET', target)
30
if (!target) return;
31
32
if (target.state === 'stateless') {
33
target.children.forEach(child => jump(child));
34
return;
35
}
36
- console.log('COMPONENT ACTION RECORD:', circularComponentTable)
37
const component = componentActionsRecord.getComponentByIndex(
38
target.componentData.index,
39
);
0 commit comments