Skip to content

Commit 6de770c

Browse files
committed
remove TODO
1 parent d291a79 commit 6de770c

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/effects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ function create_effect(type, fn, sync, push = true) {
141141
effect.first === null &&
142142
effect.nodes_start === null &&
143143
effect.teardown === null &&
144-
(effect.f & (EFFECT_PRESERVED | BOUNDARY_EFFECT)) === 0; // TODO think we can remove `| BOUNDARY_EFFECT` once the relevant PR is merged
144+
(effect.f & EFFECT_PRESERVED) === 0;
145145

146146
if (!inert && push) {
147147
if (parent !== null) {

0 commit comments

Comments
 (0)