diff --git a/backend/src/main/java/com/votogether/domain/post/service/PostService.java b/backend/src/main/java/com/votogether/domain/post/service/PostService.java index ad4b4ff0b..6da4207d6 100644 --- a/backend/src/main/java/com/votogether/domain/post/service/PostService.java +++ b/backend/src/main/java/com/votogether/domain/post/service/PostService.java @@ -307,7 +307,7 @@ public List searchPostsWithKeywordForGuest( final PostClosingType postClosingType, final PostSortType postSortType, final Long categoryId - ) { + ) { final Pageable pageable = PageRequest.of(page, BASIC_PAGING_SIZE); final List posts = postRepository.findAllWithKeyword(keyword, postClosingType, postSortType, categoryId, pageable);