Skip to content

Commit 7c9c46c

Browse files
committed
chore: revert
1 parent b7e7034 commit 7c9c46c

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export function internal_set(source, value) {
190190
is_runes() &&
191191
active_effect !== null &&
192192
(active_effect.f & CLEAN) !== 0 &&
193-
(active_effect.f & (BRANCH_EFFECT | ROOT_EFFECT | BLOCK_EFFECT)) === 0
193+
(active_effect.f & (BRANCH_EFFECT | ROOT_EFFECT)) === 0
194194
) {
195195
if (untracked_writes === null) {
196196
set_untracked_writes([source]);
@@ -280,7 +280,7 @@ function mark_reactions(signal, status) {
280280
set_signal_status(reaction, status);
281281

282282
// If the signal a) was previously clean or b) is an unowned derived, then mark it
283-
if ((flags & (CLEAN | UNOWNED | MAYBE_DIRTY)) !== 0) {
283+
if ((flags & (CLEAN | UNOWNED)) !== 0) {
284284
if ((flags & DERIVED) !== 0) {
285285
mark_reactions(/** @type {Derived} */ (reaction), MAYBE_DIRTY);
286286
} else {

0 commit comments

Comments
 (0)