@tanstack/react-router 1.43.15 → 1.44.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/src/router.ts CHANGED
@@ -1104,6 +1104,7 @@ export class Router<
1104
1104
  if (match.status === 'success') {
1105
1105
  match.meta = route.options.meta?.({
1106
1106
  matches,
1107
+ match,
1107
1108
  params: match.params,
1108
1109
  loaderData: match.loaderData,
1109
1110
  })
@@ -2009,6 +2010,7 @@ export class Router<
2009
2010
 
2010
2011
  const meta = route.options.meta?.({
2011
2012
  matches,
2013
+ match,
2012
2014
  params: match.params,
2013
2015
  loaderData,
2014
2016
  })