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: {
async jwt({ token, user, account, profile }) {
console.log('jwt', { token, user, account, profile });
async jwt({ token, user }) {
const dbUser = await prisma.user.findFirst({
where: {
email: token.email as string,