We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 808acdf commit 26564a1Copy full SHA for 26564a1
packages/qwik/src/core/shared/scheduler.ts
@@ -326,17 +326,6 @@ export const createScheduler = (
326
const nextChore = choreQueue[0];
327
328
if (nextChore.$executed$) {
329
- if (
330
- nextChore === runUptoChore &&
331
- nextChore.$type$ === ChoreType.WAIT_FOR_ALL &&
332
- qrlRuns.length
333
- ) {
334
- return Promise.all(qrlRuns)
335
- .catch(() => {
336
- // they are already handled by the qrl runs
337
- })
338
- .then(() => drainUpTo(runUptoChore, isServer));
339
- }
340
choreQueue.shift();
341
if (nextChore === runUptoChore) {
342
break;
0 commit comments