Skip to content

Commit

Permalink
refactor : 닉네임 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
imenuuu committed May 20, 2024
1 parent 9ee87b3 commit db779d0
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ public static User toUser(KakaoUserInfoDto kakaoUserInfoDto) {
}

public static User toUser(GoogleUserInfo googleUserInfo) {
String nickName = staticNickNameFeignClient.getNickName().getWords().get(0);
// String nickName = staticNickNameFeignClient.getNickName().getWords().get(0);
String nickName = WineyStatic.DEFAULT_RANDOM_NICKNAME;


return User.builder()
.profileImgUrl(googleUserInfo.getPicture())
Expand All @@ -100,7 +102,8 @@ public static User toUser(GoogleUserInfo googleUserInfo) {
}

public static User toUser(AppleMember appleMember) {
String nickName = staticNickNameFeignClient.getNickName().getWords().get(0);
// String nickName = staticNickNameFeignClient.getNickName().getWords().get(0);
String nickName = WineyStatic.DEFAULT_RANDOM_NICKNAME;

/*
NOTE
Expand Down

0 comments on commit db779d0

Please sign in to comment.