Skip to content

Commit

Permalink
hotfix: 카카오 회원 정보 응답 객체 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
TaeyeonRoyce committed Aug 9, 2024
1 parent df19229 commit fec737e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data class KakaoMemberInfoResponse(
fun toMember(): Member {
return Member(
nickname = kakaoAccount.profile.nickname,
profileImageUrl = kakaoAccount.profile.profileImage,
profileImageUrl = kakaoAccount.profile.profileImageUrl,
socialIdentifier = SocialIdentifier(
serverType = SocialLoginType.KAKAO,
socialId = id,
Expand All @@ -30,5 +30,5 @@ data class KakaoAccount(
@JsonNaming(value = SnakeCaseStrategy::class)
data class Profile(
val nickname: String,
val profileImage: String,
val profileImageUrl: String,
)

0 comments on commit fec737e

Please sign in to comment.