Skip to content

Commit 9580bea

Browse files
fix: work on Edge by adding an argument to catch (#383)
1 parent 9ded0ca commit 9580bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scrollBehavior.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export function scrollToPosition(position: ScrollPosition): void {
113113
// return to avoid other warnings
114114
return
115115
}
116-
} catch {
116+
} catch (err) {
117117
warn(
118118
`The selector "${position.el}" is invalid. If you are using an id selector, make sure to escape it. You can find more information about escaping characters in selectors at https://mathiasbynens.be/notes/css-escapes or use CSS.escape (https://developer.mozilla.org/en-US/docs/Web/API/CSS/escape).`
119119
)

0 commit comments

Comments
 (0)