Skip to content

Commit 1d44b1e

Browse files
committed
refactor: 서브모듈 해시값 되돌리기
* refactor: 개행 지우기
1 parent c9ff45f commit 1d44b1e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/main/java/com/example/solidconnection/admin/service/AdminMentorApplicationService.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ public List<MentorApplicationHistoryResponse> findMentorApplicationHistory(Long
9292
SiteUser siteUser = siteUserRepository.findById(siteUserId)
9393
.orElseThrow(() -> new CustomException(USER_NOT_FOUND));
9494

95-
long totalCount = mentorApplicationRepository.countBySiteUserId(siteUserId);
96-
95+
long totalCount = mentorApplicationRepository.countBySiteUserId(siteUser.getId());
9796
List<MentorApplication> mentorApplications = mentorApplicationRepository.findTop5BySiteUserIdOrderByCreatedAtDesc(siteUser.getId());
9897

9998
return IntStream.range(0, mentorApplications.size())

src/main/resources/secret

0 commit comments

Comments
 (0)