@tanstack/react-router 0.0.1-beta.16 → 0.0.1-beta.18

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/react-router",
3
3
  "author": "Tanner Linsley",
4
- "version": "0.0.1-beta.16",
4
+ "version": "0.0.1-beta.18",
5
5
  "license": "MIT",
6
6
  "repository": "tanstack/router",
7
7
  "homepage": "https://tanstack.com/router/",
package/src/index.tsx CHANGED
@@ -391,15 +391,15 @@ export function createReactRouter<
391
391
 
392
392
  invariant(
393
393
  runtimeMatch.routeId == match?.routeId,
394
- `useMatch('${
394
+ `useMatch("${
395
395
  match?.routeId as string
396
- }') is being called in a component that is meant to render the '${
396
+ }") is being called in a component that is meant to render the '${
397
397
  runtimeMatch.routeId
398
- }' route. Did you mean to 'useMatch(${
398
+ }' route. Did you mean to 'useMatch("${
399
399
  match?.routeId as string
400
- }, { strict: false })' or 'useRoute(${
400
+ }", { strict: false })' or 'useRoute("${
401
401
  match?.routeId as string
402
- })' instead?`,
402
+ }")' instead?`,
403
403
  )
404
404
  }
405
405