diff --git a/docs/router/framework/solid/guide/path-params.md b/docs/router/framework/solid/guide/path-params.md index 769f4746216..7851e94bd8d 100644 --- a/docs/router/framework/solid/guide/path-params.md +++ b/docs/router/framework/solid/guide/path-params.md @@ -18,7 +18,7 @@ Let's create a post route file that uses a path param to match the post ID: - `posts.$postId.tsx` ```tsx -import { createFileRoute } from '@tanstack/react-router' +import { createFileRoute } from '@tanstack/solid-router' export const Route = createFileRoute('/posts/$postId')({ loader: async ({ params }) => { @@ -377,7 +377,7 @@ function Navigation() { {/* Navigate with multiple optional parameters */} Specific Post