diff --git a/auth.ts b/auth.ts index 7a660f0..c70f900 100644 --- a/auth.ts +++ b/auth.ts @@ -20,7 +20,7 @@ export const { jwt({ token, profile }) { if (profile) { token.id = profile.id - token.image = profile.picture + token.image = profile.avatar_url || profile.picture } return token },