@tanstack/router-core 1.121.27 → 1.121.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/router.cjs +1 -1
- package/dist/cjs/router.cjs.map +1 -1
- package/dist/esm/router.js +1 -1
- package/dist/esm/router.js.map +1 -1
- package/package.json +1 -1
- package/src/router.ts +1 -1
package/package.json
CHANGED
package/src/router.ts
CHANGED
|
@@ -1438,7 +1438,7 @@ export class RouterCore<
|
|
|
1438
1438
|
// Resolve the next to
|
|
1439
1439
|
const nextTo = dest.to
|
|
1440
1440
|
? this.resolvePathWithBase(fromPath, `${dest.to}`)
|
|
1441
|
-
: fromPath
|
|
1441
|
+
: this.resolvePathWithBase(fromPath, '.')
|
|
1442
1442
|
|
|
1443
1443
|
// Resolve the next params
|
|
1444
1444
|
let nextParams =
|