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 7f1e7b1 commit 59f4b2aCopy full SHA for 59f4b2a
packages/svelte/src/internal/client/reactivity/sources.js
@@ -180,7 +180,7 @@ export function set(source, value) {
180
}
181
for (const effect of inspects) {
182
// If the inspect effect is clean, mark it maybe dirty so we can avoid overfiring.
183
- if ((effect.f & DIRTY) !== 0) {
+ if ((effect.f & CLEAN) !== 0) {
184
set_signal_status(effect, MAYBE_DIRTY);
185
186
if (check_dirtiness(effect)) {
0 commit comments