Skip to content

Commit 855ae07

Browse files
committed
style: auto-format auth.ts to satisfy strict CI Prettier bounds
1 parent 983eef4 commit 855ae07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/auth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const config: NextAuthConfig = {
2424
token.username = profile.login
2525
}
2626
}
27-
27+
2828
const secret = process.env.SUPABASE_JWT_SECRET
2929
if (secret && token.id) {
3030
token.supabaseAccessToken = jwt.sign(
@@ -35,7 +35,7 @@ const config: NextAuthConfig = {
3535
email: token.email,
3636
role: "authenticated",
3737
},
38-
secret
38+
secret,
3939
)
4040
}
4141
return token

0 commit comments

Comments
 (0)