Skip to content

Commit f62ece2

Browse files
committed
chore: fix core prettier
1 parent c7e4d16 commit f62ece2

File tree

1 file changed

+4
-3
lines changed
  • packages/core/src/lib/actions/callback

1 file changed

+4
-3
lines changed

packages/core/src/lib/actions/callback/index.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,10 +318,11 @@ export async function callback(
318318
const user = userFromAuthorize
319319

320320
if (!user) {
321-
console.error("Read more at https://errors.authjs.dev/#credentialssignin")
321+
console.error(
322+
"Read more at https://errors.authjs.dev/#credentialssignin"
323+
)
322324
throw new CredentialsSignin()
323-
}
324-
else user.id = user.id?.toString() ?? crypto.randomUUID()
325+
} else user.id = user.id?.toString() ?? crypto.randomUUID()
325326

326327
const account = {
327328
providerAccountId: user.id,

0 commit comments

Comments
 (0)