Skip to content

Commit

Permalink
[diary] page size up
Browse files Browse the repository at this point in the history
  • Loading branch information
Noverish committed May 19, 2024
1 parent 63de2ac commit 56ea28a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class DiarySearchBo(
private val friendServiceClient: FriendServiceClient,
) {
fun search(userId: String, token: String, params: DiarySearchParams): ApiPageResult<ApiDiaryPreview> {
val page = PageRequest.of(params.page ?: 0, params.pageSize ?: 10)
val page = PageRequest.of(params.page ?: 0, params.pageSize ?: 24)
val condition = DiaryCondition(
userId = userId,
dates = params.dates,
Expand Down

0 comments on commit 56ea28a

Please sign in to comment.