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 892bb28 commit 6d9801dCopy full SHA for 6d9801d
packages/svelte/src/internal/client/reactivity/sources.js
@@ -288,6 +288,9 @@ function mark_reactions(signal, status) {
288
var reaction = reactions[i];
289
var flags = reaction.f;
290
291
+ // Skip any effects that are already dirty
292
+ if ((flags & DIRTY) !== 0) continue;
293
+
294
// In legacy mode, skip the current effect to prevent infinite loops
295
if (!runes && reaction === active_effect) continue;
296
0 commit comments