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 4fec3d6 commit 3adfc6cCopy full SHA for 3adfc6c
src/backend/controllers/timeJump.ts
@@ -16,7 +16,6 @@ export default function timeJumpInitiation(mode: Status) {
16
* This function is to reset jumping mode to false when user hover the mouse over the browser body
17
*/
18
const resetJumpingMode = (): void => {
19
- console.log('timeJump - STOP JUMPING');
20
mode.jumping = false;
21
};
22
/**
@@ -25,7 +24,6 @@ export default function timeJumpInitiation(mode: Status) {
25
24
26
return async function timeJump(targetSnapshot: Tree): Promise<void> {
27
mode.jumping = true;
28
- console.log('timeJump - START JUMPING');
29
// Reset mode.navigating
30
delete mode.navigating;
31
// Traverse the snapshotTree to update ReactFiberTree
0 commit comments