Skip to content

Commit

Permalink
refactor: 정렬 기준 수정 (마감일자 오름차순)
Browse files Browse the repository at this point in the history
  • Loading branch information
f1v3-dev committed Sep 21, 2024
1 parent d412a3e commit d04f04b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public List<MeetingMyPageResponseDto> findMeetingInfoByMemberId(Long memberId) {
meeting.numberOfPeople,
meeting.isAnonymous
))
.orderBy(meeting.dueDateTime.desc(), meeting.meetingId.desc())
.orderBy(meeting.dueDateTime.asc(), meeting.meetingId.desc())
.fetch();

for (MeetingMyPageResponseDto responseDto : responseDtoList) {
Expand Down

0 comments on commit d04f04b

Please sign in to comment.