diff --git a/src/routes/solid-start/advanced/session.mdx b/src/routes/solid-start/advanced/session.mdx index 3cf6c64ef..04a9e8bab 100644 --- a/src/routes/solid-start/advanced/session.mdx +++ b/src/routes/solid-start/advanced/session.mdx @@ -68,7 +68,7 @@ The `useSession` helper is the primary way to create and manage sessions. It provides a comprehensive interface for all session operations. ```ts title="src/lib/session.ts" -import { useSession } from "vinxi/http"; +import { useSession } from "@solidjs/start/http"; type SessionData = { theme: "light" | "dark";