@tanstack/router-core 1.151.6 → 1.153.1

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.151.6",
3
+ "version": "1.153.1",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
package/src/router.ts CHANGED
@@ -1199,7 +1199,7 @@ export class RouterCore<
1199
1199
  pathname: decodePath(url.pathname),
1200
1200
  searchStr,
1201
1201
  search: replaceEqualDeep(previousLocation?.search, parsedSearch) as any,
1202
- hash: url.hash.split('#').reverse()[0] ?? '',
1202
+ hash: decodePath(url.hash.split('#').reverse()[0] ?? ''),
1203
1203
  state: replaceEqualDeep(previousLocation?.state, state),
1204
1204
  }
1205
1205
  }