removed console log

This commit is contained in:
2024-11-22 23:26:38 -06:00
parent 0331f30a72
commit e396ad5f54

View File

@@ -14,8 +14,6 @@ export const AuthProvider: FC<PropsWithChildren> = ({ children }) => {
const AuthWrapper: FC<PropsWithChildren> = ({ children }) => {
const session = useSession();
console.log("SESSION", session);
if (session.status === "unauthenticated") {
void signIn();
}