@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/router-core",
3
- "version": "1.121.27",
3
+ "version": "1.121.33",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
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 =