diff --git a/src/components/ui/auth-control.tsx b/src/components/ui/auth-control.tsx index c6a79cf..24e6ae8 100644 --- a/src/components/ui/auth-control.tsx +++ b/src/components/ui/auth-control.tsx @@ -10,12 +10,12 @@ import { signIn, useSession } from "next-auth/react"; * client-side (SessionProvider) so the marketing pages stay static. */ export default function AuthControl({ compact = false }: { compact?: boolean }) { - const { data: session, status } = useSession(); - - if (status === "loading") { - return