We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e02a98 commit 4f7c3bdCopy full SHA for 4f7c3bd
packages/svelte/src/internal/client/proxy.js
@@ -266,7 +266,9 @@ export function proxy(value) {
266
267
var own_keys = Reflect.ownKeys(target).filter((key) => {
268
var source = sources.get(key);
269
- return source === undefined || source.v !== UNINITIALIZED;
+ return (
270
+ source === undefined || source.v !== UNINITIALIZED || key !== BINDABLE_FALLBACK_SYMBOL
271
+ );
272
});
273
274
for (var [key, source] of sources) {
0 commit comments