From 9b614896ce3564ab2944a8681db8c3225174f127 Mon Sep 17 00:00:00 2001 From: austinkelsay Date: Fri, 4 Oct 2024 15:02:20 -0500 Subject: [PATCH] Remove first log --- src/pages/api/auth/[...nextauth].js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/api/auth/[...nextauth].js b/src/pages/api/auth/[...nextauth].js index b866c7b..8f9f873 100644 --- a/src/pages/api/auth/[...nextauth].js +++ b/src/pages/api/auth/[...nextauth].js @@ -32,7 +32,6 @@ const authorize = async (pubkey) => { const combinedUser = { ...dbUser, ...fields }; // Update the user in the database if necessary - console.log("dbUser", dbUser); dbUser = await updateUser(dbUser.id, combinedUser); return dbUser;