Skip to content

Commit

Permalink
fix: 장소 검색 pagination 기존 10개에서 5개로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
koomchang committed Nov 28, 2024
1 parent 5222b57 commit 3a83c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/search/search.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class SearchService {
latitude?: number,
longitude?: number,
page: number = 1,
size: number = 10,
size: number = 5,
) {
const searched = await this.elasticSearchQuery.searchPlace(
query,
Expand Down

0 comments on commit 3a83c71

Please sign in to comment.