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 df2ace4 commit d84332eCopy full SHA for d84332e
packages/app/src/app/overmind/effects/live/index.ts
@@ -104,6 +104,7 @@ class Live {
104
if (!this.awaitSend) {
105
return Promise.resolve();
106
}
107
+ clearTimeout(this.awaitSendTimer);
108
const awaitSend = this.awaitSend;
109
this.awaitSend = null;
110
awaitSend.resolve();
@@ -335,7 +336,7 @@ class Live {
335
336
*/
337
if (this.isLiveBlockerExperiement() && this.awaitSend) {
338
this.resolveAwaitSend();
- this.awaitSynchronizedModule(module.shortid);
339
+ await this.awaitSynchronizedModule(module.shortid);
340
this.setAwaitSend();
341
342
// Send the save message
0 commit comments