Skip to content

Commit

Permalink
fix : 모든 사용자를 남성화 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
genius00hwan authored Aug 22, 2024
1 parent 67aefe7 commit b6f2258
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public static Member toMember(
.role(Role.USER)
.name(signUpRequestDTO.getName())
.nickname(signUpRequestDTO.getNickname())
.gender(Gender.valueOf(signUpRequestDTO.getGender()))
.gender(Gender.MALE)
// .gender(Gender.valueOf(signUpRequestDTO.getGender()))
.birthDay(signUpRequestDTO.getBirthday())
.persona(signUpRequestDTO.getPersona())
.build();
Expand Down

0 comments on commit b6f2258

Please sign in to comment.