From e396ad5f54011f8604baa18fdd5bb44970c4b25a Mon Sep 17 00:00:00 2001 From: Zeke Abshire Date: Fri, 22 Nov 2024 23:26:38 -0600 Subject: [PATCH] removed console log --- src/app/_components/providers/auth-provider.tsx | 2 -- 1 file changed, 2 deletions(-) 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(); }