@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.
@@ -215,7 +215,7 @@ class RouterCore {
215
215
  pathname: utils.decodePath(url.pathname),
216
216
  searchStr,
217
217
  search: utils.replaceEqualDeep(previousLocation?.search, parsedSearch),
218
- hash: url.hash.split("#").reverse()[0] ?? "",
218
+ hash: utils.decodePath(url.hash.split("#").reverse()[0] ?? ""),
219
219
  state: utils.replaceEqualDeep(previousLocation?.state, state)
220
220
  };
221
221
  };