Skip to content

Commit

Permalink
[fix] user 정보 불러오기 count 오류 해결 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjdtkdgns authored Aug 2, 2023
1 parent 4bd3861 commit 7d24195
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public GetUserProfileResponse execute() {
Long userId = SecurityUtil.getCurrentUserId();
validateExecution(userId);
User user = userAdaptor.findById(userId);
List<Archiving> archivingList = archivingAdaptor.findAllByUserId(userId);
List<Archiving> archivingList = archivingAdaptor.queryArchivingByUserId(userId);
return userMapper.toGetUserProfileResponse(archivingList, user);
}

Expand Down

0 comments on commit 7d24195

Please sign in to comment.