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 fb88ffb commit 9efbecaCopy full SHA for 9efbeca
packages/router-core/src/path.ts
@@ -377,7 +377,6 @@ function baseParsePathname(pathname: string): ReadonlyArray<Segment> {
377
interface InterpolatePathOptions {
378
path?: string
379
params: Record<string, unknown>
380
- leaveWildcards?: boolean
381
leaveParams?: boolean
382
// Map of encoded chars to decoded chars (e.g. '%40' -> '@') that should remain decoded in path params
383
decodeCharMap?: Map<string, string>
packages/router-core/tests/path.test.ts
@@ -531,7 +531,6 @@ describe('interpolatePath', () => {
531
interpolatePath({
532
path: to,
533
params,
534
- leaveWildcards: false,
535
leaveParams: true,
536
}).interpolatedPath,
537
).toBe(result)
0 commit comments