Log dbUser

This commit is contained in:
austinkelsay 2024-10-04 14:58:29 -05:00
parent 08033464c6
commit cafa83a083

View File

@ -32,6 +32,7 @@ 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;