Skip to content

Commit 4d5a28f

Browse files
committed
oops
1 parent db9b0b5 commit 4d5a28f

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

packages/svelte/src/internal/client/proxy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,15 +257,15 @@ export function proxy(value, path, preserve_path = true) {
257257
s = DEV ? tag_source(s, to_trace_name(prop)) : s;
258258
set(
259259
s,
260-
with_parent(() => proxy(value, to_trace_name(prop), false))
260+
with_parent(() => proxy(value, to_trace_name(prop)))
261261
);
262262
sources.set(prop, s);
263263
}
264264
} else {
265265
has = s.v !== UNINITIALIZED;
266266
set(
267267
s,
268-
with_parent(() => proxy(value, to_trace_name(prop), false))
268+
with_parent(() => proxy(value, to_trace_name(prop)))
269269
);
270270
}
271271

0 commit comments

Comments
 (0)