diff --git a/src/app/_components/providers/auth-provider.tsx b/src/app/_components/providers/auth-provider.tsx index 469d37d..5302be5 100644 --- a/src/app/_components/providers/auth-provider.tsx +++ b/src/app/_components/providers/auth-provider.tsx @@ -14,8 +14,6 @@ export const AuthProvider: FC = ({ children }) => { const AuthWrapper: FC = ({ children }) => { const session = useSession(); - console.log("SESSION", session); - if (session.status === "unauthenticated") { void signIn(); }