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 c229e0f commit 9d1394fCopy full SHA for 9d1394f
packages/svelte/src/internal/client/runtime.js
@@ -612,8 +612,7 @@ function process_effects(effect, collected_effects) {
612
613
main_loop: while (current_effect !== null) {
614
var flags = current_effect.f;
615
- // TODO: we probably don't need to check for destroyed as it shouldn't be encountered?
616
- var is_active = (flags & (DESTROYED | INERT)) === 0;
+ var is_active = (flags & INERT) === 0;
617
var is_branch = (flags & BRANCH_EFFECT) !== 0;
618
var is_clean = (flags & CLEAN) !== 0;
619
var child = current_effect.first;
@@ -646,6 +645,7 @@ function process_effects(effect, collected_effects) {
646
645
}
647
648
+
649
var sibling = current_effect.next;
650
651
if (sibling === null) {
0 commit comments