File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/svelte/src/internal/client/reactivity Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ export function internal_set(source, value) {
190
190
is_runes ( ) &&
191
191
active_effect !== null &&
192
192
( 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
194
194
) {
195
195
if ( untracked_writes === null ) {
196
196
set_untracked_writes ( [ source ] ) ;
@@ -280,7 +280,7 @@ function mark_reactions(signal, status) {
280
280
set_signal_status ( reaction , status ) ;
281
281
282
282
// 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 ) {
284
284
if ( ( flags & DERIVED ) !== 0 ) {
285
285
mark_reactions ( /** @type {Derived } */ ( reaction ) , MAYBE_DIRTY ) ;
286
286
} else {
You can’t perform that action at this time.
0 commit comments