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 bbe1d73 commit 37ab5f9Copy full SHA for 37ab5f9
packages/svelte/src/internal/client/runtime.js
@@ -644,7 +644,8 @@ function infinite_loop_guard() {
644
}
645
646
function flush_queued_root_effects() {
647
- let prev_updating = is_updating_effect;
+ let was_updating_effect = is_updating_effect;
648
+
649
try {
650
var flush_count = 0;
651
is_updating_effect = true;
@@ -672,7 +673,7 @@ function flush_queued_root_effects() {
672
673
674
} finally {
675
is_flushing = false;
- is_updating_effect = prev_updating;
676
+ is_updating_effect = was_updating_effect;
677
678
last_scheduled_effect = null;
679
if (DEV) {
0 commit comments