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 2475851 commit dc27730Copy full SHA for dc27730
src/routing.ts
@@ -286,11 +286,7 @@ export function createRouterContext(
286
integration: RouterIntegration,
287
branches: () => Branch[],
288
getContext?: () => any,
289
- options: {
290
- base?: string;
291
- singleFlight?: boolean;
292
- transformUrl?: (url: string) => string;
293
- } = {}
+ options: { base?: string; singleFlight?: boolean; transformUrl?: (url: string) => string } = {}
294
): RouterContext {
295
const {
296
signal: [source, setSource],
@@ -427,7 +423,6 @@ export function createRouterContext(
427
423
...options
428
424
};
429
425
430
- let s: string;
431
426
const resolvedTo = resolve
432
? route.resolvePath(to)
433
: resolvePath((queryOnly && location.pathname) || "", to);
0 commit comments