@tanstack/react-router 1.95.0 → 1.95.2

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.
@@ -340,7 +340,10 @@ class Router {
340
340
  );
341
341
  }
342
342
  const prevParams = { ...(_e = last(fromMatches)) == null ? void 0 : _e.params };
343
- let nextParams = (dest.params ?? true) === true ? prevParams : { ...prevParams, ...functionalUpdate(dest.params, prevParams) };
343
+ let nextParams = (dest.params ?? true) === true ? prevParams : {
344
+ ...prevParams,
345
+ ...functionalUpdate(dest.params, prevParams)
346
+ };
344
347
  if (Object.keys(nextParams).length > 0) {
345
348
  matchedRoutesResult == null ? void 0 : matchedRoutesResult.matchedRoutes.map((route) => {
346
349
  var _a2;