diff --git a/_artifacts/skill_spec.md b/_artifacts/skill_spec.md index 35c811a3bc6..4503afb48a5 100644 --- a/_artifacts/skill_spec.md +++ b/_artifacts/skill_spec.md @@ -67,7 +67,7 @@ TanStack Router is a type-safe router for React and Solid applications with buil | # | Mistake | Priority | Source | Cross-skill? | | --- | --------------------------------------------- | -------- | ----------------------------- | ------------ | -| 1 | Interpolating path params into to string | CRITICAL | docs/guide/navigation | navigation | +| 1 | Interpolating path params into `to` string | CRITICAL | docs/guide/navigation | navigation | | 2 | Using \* for splat routes instead of $ | MEDIUM | docs/routing/routing-concepts | — | | 3 | Using curly braces for basic dynamic segments | MEDIUM | docs/guide/path-params | — | diff --git a/docs/router/api/router/NotFoundErrorType.md b/docs/router/api/router/NotFoundErrorType.md index 6d8b00a84b5..1f4fbe4c74e 100644 --- a/docs/router/api/router/NotFoundErrorType.md +++ b/docs/router/api/router/NotFoundErrorType.md @@ -29,7 +29,7 @@ The `NotFoundError` object accepts/contains the following properties: - Type: `any` - Optional -- Custom data that is passed into to `notFoundComponent` when the not-found error is handled +- Custom data that is passed into `notFoundComponent` when the not-found error is handled ### `throw` property diff --git a/packages/react-router/tests/useNavigate.test.tsx b/packages/react-router/tests/useNavigate.test.tsx index b5f473885f7..a473e2c8b2c 100644 --- a/packages/react-router/tests/useNavigate.test.tsx +++ b/packages/react-router/tests/useNavigate.test.tsx @@ -2328,7 +2328,7 @@ describe.each([{ basepath: '' }, { basepath: '/basepath' }])( navigate({ to: '.', params: { param: 'bar' } as any }) } > - Navigate to to . with param:bar + Navigate to . with param:bar