Skip to content

Commit

Permalink
Fix: 카카오 저장 정보 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeongho427 committed Jun 5, 2024
1 parent 5997402 commit a49d38d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public User createUser(CreateUserRequest request) {
.name(request.getName())
.email(request.getEmail())
.imageUrl(request.getImageUrl())
.gender(Objects.equals(request.getGender(), "male") ? Gender.MALE : Gender.FEMALE)
.age(age)
//.gender(Objects.equals(request.getGender(), "male") ? Gender.MALE : Gender.FEMALE)
//.age(age)
.location(request.getLocation())
.point(0L)
.build();
Expand Down

0 comments on commit a49d38d

Please sign in to comment.