Skip to content

Commit

Permalink
[Chore] #37 - 카카오 회원가입 시 email null로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
0lynny committed Jan 7, 2024
1 parent 691f72c commit 4028f29
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ public SocialLoginResponse gooleLogin(SocialLoginRequest request) throws IOExcep
.profileImage(userResponse.picture())
.email(userResponse.email())
.build());

user = newUser;
} else {
user = findUser.get();
Expand Down Expand Up @@ -116,9 +115,8 @@ public SocialLoginResponse kakaoLogin(SocialLoginRequest request) throws IOExcep
.socialPlatform(request.socialPlatform())
.name(userResponse.kakaoAccount().profile().nickname())
.profileImage(userResponse.kakaoAccount().profile().profileImageUrl())
.email("")
.email(null)
.build());

user = newUser;
} else {
user = findUser.get();
Expand Down

0 comments on commit 4028f29

Please sign in to comment.