Skip to content

Commit

Permalink
Merge pull request #171 from BookwooriAlpineClub/hotfix
Browse files Browse the repository at this point in the history
[Feat] Core 서버 수정 사항 반영
  • Loading branch information
crhwang822 authored Mar 2, 2025
2 parents 0a942c0 + 10b8baa commit 03180a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static MemberResponseDto from(Member member, boolean isMine) {
.backgroundImg(member.getBackgroundImg())
.level(member.getGrade().getLevel())
.mountain(member.getGrade().getMountain())
.totalHeight(member.getTotalHeight())
.totalHeight(Math.round(member.getTotalHeight() * 100.0) / 100.0)
.totalPage(member.getTotalPage())
.build();
}
Expand Down

0 comments on commit 03180a2

Please sign in to comment.