Skip to content

Commit

Permalink
Refactor: 회원 상세 정보 입력 로직 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pjh5365 committed Nov 19, 2024
1 parent a55e836 commit 302a239
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ public static MemberDetail toEntity(Member member, MemberDetailRequest request)
.age(request.getAge())
.location(request.getLocation())
.mainPreference(request.getMainPreference())
.subExperience(request.getSubExperience())
.subPreference(request.getSubPreference())
.mainExperience(request.getMainExperience())
.subExperience(request.getSubExperience())
.physicalStatus(request.getPhysicalStatus())
.build();
}
Expand Down

0 comments on commit 302a239

Please sign in to comment.