Skip to content

Commit 548a696

Browse files
committed
tidy up
1 parent da4f0c3 commit 548a696

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function create_effect(type, fn, sync, push = true) {
102102
fn,
103103
last: null,
104104
next: null,
105-
parent: parent,
105+
parent,
106106
prev: null,
107107
teardown: null,
108108
transitions: null,

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ export function source(v, stack) {
6565
var signal = {
6666
f: 0, // TODO ideally we could skip this altogether, but it causes type errors
6767
v,
68-
// p: active_reaction,
6968
reactions: null,
7069
equals,
7170
rv: 0,

0 commit comments

Comments
 (0)