Skip to content

Commit

Permalink
🚑 hotfix: 맥주 병수 -> 잔수 계산 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chamm99 committed Aug 6, 2024
1 parent 494c269 commit 170dc8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static HistoryResponse.TodayDto toTodayDto(History history) {
return HistoryResponse.TodayDto.builder()
.todaySojuConsumption(history.getSojuConsumption() * 8)
.todayWineConsumption(history.getWineConsumption() * 5)
.todayBeerConsumption(history.getBeerConsumption() * 3)
.todayBeerConsumption(history.getBeerConsumption())
.todayMakgeolliConsumption(history.getMakgeolliConsumption() * 5)
.build();
}
Expand Down

0 comments on commit 170dc8b

Please sign in to comment.