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 5fd8fad commit ef4678bCopy full SHA for ef4678b
package/linkFiber.js
@@ -24,7 +24,8 @@ module.exports = (snap, mode) => {
24
25
function newSetState(state, callback = () => { }) {
26
// dont do anything if state is locked
27
- if (mode.locked) return;
+ // UNLESS we are currently jumping through time
28
+ if (mode.locked && !mode.jumping) return;
29
// continue normal setState functionality, except add sending message middleware
30
oldSetState(state, () => {
31
updateSnapShotTree();
0 commit comments