Skip to content

Commit

Permalink
!hotfix: 홈 화면 경험 기록 리스트 조회 사이즈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
daeun084 committed Nov 18, 2024
1 parent f07c494 commit 9475741
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ private List<Record> findRecordList(User user, Long lastRecordId) {
}

private List<Record> findRecordListOrderByCreatedAt(User user) {
Pageable pageable = PageRequest.of(0, 9, Sort.by("createdAt").descending());
Pageable pageable = PageRequest.of(0, 6, Sort.by("createdAt").descending());
return recordRepository.findRecordsOrderByCreatedAt(user, pageable);
}

Expand Down

0 comments on commit 9475741

Please sign in to comment.