refactor: apply prettier conf

This commit is contained in:
Sonny
2023-11-19 23:37:23 +01:00
parent 371eea85dc
commit 1f42fad0ad
19 changed files with 152 additions and 95 deletions

View File

@@ -5,11 +5,11 @@ export default async function updateUser(profile: Profile) {
return await prisma.user.update({
where: {
email: profile.email,
google_id: profile.sub
google_id: profile.sub,
},
data: {
email: profile.email,
google_id: profile.sub
}
google_id: profile.sub,
},
});
}
}