Skip to content

Commit

Permalink
fix: 포토가이드 둘러보기 페이징 개수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
daeunkwak committed Oct 30, 2023
1 parent 7ce788a commit d8c5a40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public PhotoGuide getPhotoGuide(Long photoGuideId) {
*/
public List<PhotoGuide> getAllPhotoGuide() {

Pageable pageable = PageRequest.of(0, 18);
Pageable pageable = PageRequest.of(0, 30);
return photoGuideRepository.findAll(pageable).getContent();
}

Expand Down

0 comments on commit d8c5a40

Please sign in to comment.