Skip to content

Commit fcf67ee

Browse files
authored
Update packages/svelte/src/internal/client/proxy.js
1 parent afbe254 commit fcf67ee

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ export function get_proxied_value(value) {
331331
if (value !== null && typeof value === 'object' && STATE_SYMBOL in value) {
332332
return value[STATE_SYMBOL];
333333
}
334-
} catch (err) {
334+
} catch {
335335
// the above if check can throw an error if the value in question
336336
// is the contentWindow of an iframe on another domain, in which
337337
// case we want to just return the value (because it's definitely

0 commit comments

Comments
 (0)