Skip to content

Commit

Permalink
hotfix: 미션 완료 카드 리스트 오름차순 정렬
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Sep 30, 2024
1 parent 1feeb01 commit 30e7e74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public List<MissionTabResponse> findAllTabMissionsByMemberAndStatus(
.and(missionRecord.status.eq(status))
.and(year.eq(currentYear))
.and(month.eq(currentMonth)))
.orderBy(missionRecord.updatedAt.desc())
.orderBy(missionRecord.updatedAt.asc())
.fetch();
}

Expand Down

0 comments on commit 30e7e74

Please sign in to comment.