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 26173de commit 45caf0bCopy full SHA for 45caf0b
packages/svelte/src/internal/client/proxy.js
@@ -44,7 +44,7 @@ export function proxy(value, path) {
44
var to_trace_name = DEV
45
? (prop) => {
46
return typeof prop === 'symbol'
47
- ? `${path}[unique symbol]`
+ ? `${path}[Symbol(${prop.description ?? ''})]`
48
: typeof prop === 'number' || Number(prop) === Number(prop)
49
? `${path}[${prop}]`
50
: `${path}.${prop}`;
0 commit comments