Skip to content

Commit 89127ac

Browse files
committedNov 27, 2024·
fix(kit): add null-safety check for resolving matched route, close #708
1 parent d02cf1e commit 89127ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/core/src/rpc/global.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export const functions = {
140140
getMatchedRoutes(path: string) {
141141
const c = console.warn
142142
console.warn = () => {}
143-
const matched = devtoolsRouter.value?.resolve({
143+
const matched = devtoolsRouter.value?.resolve?.({
144144
path: path || '/',
145145
}).matched ?? []
146146
console.warn = c

0 commit comments

Comments
 (0)
Please sign in to comment.