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 5466086 commit c91e69bCopy full SHA for c91e69b
packages/svelte/src/internal/client/reactivity/effects.js
@@ -599,15 +599,6 @@ function resume_children(effect, local) {
599
if ((effect.f & INERT) === 0) return;
600
effect.f ^= INERT;
601
602
- // If a dependency of this effect changed while it was paused,
603
- // schedule the effect to update. we don't use `check_dirtiness`
604
- // here because we don't want to eagerly recompute a derived like
605
- // `{#if foo}{foo.bar()}{/if}` if `foo` is now `undefined
606
- if ((effect.f & CLEAN) !== 0) {
607
- set_signal_status(effect, DIRTY);
608
- schedule_effect(effect);
609
- }
610
-
611
var child = effect.first;
612
613
while (child !== null) {
0 commit comments