diff --git a/packages/next-auth/src/providers/kakao.ts b/packages/next-auth/src/providers/kakao.ts index e63c55ee7f..706de7c3e7 100644 --- a/packages/next-auth/src/providers/kakao.ts +++ b/packages/next-auth/src/providers/kakao.ts @@ -82,9 +82,9 @@ export default function Kakao

= KakaoProfile>( profile(profile) { return { id: profile.id, - name: profile.kakao_account?.profile.nickname, + name: profile.kakao_account?.profile?.nickname, email: profile.kakao_account?.email, - image: profile.kakao_account?.profile.profile_image_url, + image: profile.kakao_account?.profile?.profile_image_url, } }, options,