From 3959eea77ea8d7aeceb7281a236952e3f38760f7 Mon Sep 17 00:00:00 2001 From: yousefed Date: Fri, 23 Jan 2026 20:07:40 +0100 Subject: [PATCH] fix auth button --- docs/components/AuthNavButton.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/components/AuthNavButton.tsx b/docs/components/AuthNavButton.tsx index 19fa95fad5..0234a944f7 100644 --- a/docs/components/AuthNavButton.tsx +++ b/docs/components/AuthNavButton.tsx @@ -49,16 +49,16 @@ export const UserImage = ({ user }: UserImageProps) => { }; export function AuthNavButton() { - // const session = authClient.useSession(); - const session = { - data: { - planType: "free", - user: { - name: "You", - image: undefined, - }, - }, - }; + const session = authClient.useSession(); + // const session = { + // data: { + // planType: "free", + // user: { + // name: "You", + // image: undefined, + // }, + // }, + // }; const pathname = usePathname(); if (!session.data) {