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 59f4b2a commit ec7886cCopy full SHA for ec7886c
packages/svelte/src/internal/client/reactivity/sources.js
@@ -179,7 +179,8 @@ export function set(source, value) {
179
flush_sync();
180
}
181
for (const effect of inspects) {
182
- // If the inspect effect is clean, mark it maybe dirty so we can avoid overfiring.
+ // Mark clean inspect-effects as maybe dirty and then check their dirtiness
183
+ // instead of just updating the effects - this way we avoid overfiring.
184
if ((effect.f & CLEAN) !== 0) {
185
set_signal_status(effect, MAYBE_DIRTY);
186
0 commit comments