From 30c79d81c3b79efe3148821560127f1dfd83105d Mon Sep 17 00:00:00 2001 From: John Ferlito Date: Wed, 1 Oct 2025 11:08:14 +1000 Subject: [PATCH] docs: fix import path for useSession in authentication.md --- docs/start/framework/react/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/start/framework/react/authentication.md b/docs/start/framework/react/authentication.md index 7eb5a4b9b6b..8b7f292a154 100644 --- a/docs/start/framework/react/authentication.md +++ b/docs/start/framework/react/authentication.md @@ -95,7 +95,7 @@ TanStack Start provides secure HTTP-only cookie sessions: ```tsx // utils/session.ts -import { useSession } from '@tanstack/react-start' +import { useSession } from '@tanstack/react-start/server' type SessionData = { userId?: string