clean up console.log() used for testing

This commit is contained in:
Doug Andrade
2023-06-13 02:00:45 -04:00
committed by Mythie
parent 6253c42ca1
commit 5442e82ae7

View File

@ -62,8 +62,7 @@ export const NEXT_AUTH_OPTIONS: AuthOptions = {
}), }),
], ],
callbacks: { callbacks: {
async jwt({ token, user, account, profile }) { async jwt({ token, user }) {
console.log('jwt', { token, user, account, profile });
const dbUser = await prisma.user.findFirst({ const dbUser = await prisma.user.findFirst({
where: { where: {
email: token.email as string, email: token.email as string,