diff --git a/docs/content/docs/concepts/client.mdx b/docs/content/docs/concepts/client.mdx index 4942a4dc1e..f87ed53224 100644 --- a/docs/content/docs/concepts/client.mdx +++ b/docs/content/docs/concepts/client.mdx @@ -137,8 +137,8 @@ In addition to the standard methods, the client provides hooks to easily access ```svelte title="user.svelte"
```tsx title="user.tsx" - import { client } from "~/lib/client"; + import { authClient } from "~/lib/auth-client"; import { Show } from 'solid-js'; export default function Home() { - const session = client.useSession() + const session = authClient.useSession() return (