Skip to content

Commit 59f4b2a

Browse files
committed
oops
1 parent 7f1e7b1 commit 59f4b2a

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+1
-1
lines changed

packages/svelte/src/internal/client/reactivity/sources.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export function set(source, value) {
180180
}
181181
for (const effect of inspects) {
182182
// If the inspect effect is clean, mark it maybe dirty so we can avoid overfiring.
183-
if ((effect.f & DIRTY) !== 0) {
183+
if ((effect.f & CLEAN) !== 0) {
184184
set_signal_status(effect, MAYBE_DIRTY);
185185
}
186186
if (check_dirtiness(effect)) {

0 commit comments

Comments
 (0)