Remove first log

This commit is contained in:
austinkelsay 2024-10-04 15:02:20 -05:00
parent 7b9aff87eb
commit 9b614896ce

View File

@ -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;