Skip to content

Commit

Permalink
[Fix] 챌린지 홈 종료된 챌린지 조회 Response 순서 수정 (#213)
Browse files Browse the repository at this point in the history
[Fix] 챌린지 홈 종료된 챌린지 조회 Response 챌린지 이름, 카테고리 순서 수정
  • Loading branch information
heoboseong7 authored Feb 25, 2023
1 parent bff7097 commit e0aa3ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ public ChallengeHistoryListResponse toChallengeHistoryListResponse(List<Challeng
public ChallengeHistoryResponse toChallengeHistoryResponse(ChallengeParticipation participation) {
return ChallengeHistoryResponse.of(
participation.getChallenge().getId(),
participation.getChallenge().getName(),
participation.getChallenge().getInterest().getName(),
participation.getChallenge().getName(),
participation.getCreatedAt().toLocalDate().toString(),
participation.getUpdatedAt().toLocalDate().toString()
);
Expand Down

0 comments on commit e0aa3ca

Please sign in to comment.