Skip to content

Commit

Permalink
fix: 장소 검색 갯수 5개로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
koomchang committed Nov 28, 2024
1 parent 3a83c71 commit cdb0491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/search/search.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class SearchController {
@Query('latitude') latitude?: number,
@Query('longitude') longitude?: number,
@Query('page', new ParseOptionalNumberPipe(1)) page?: number,
@Query('limit', new ParseOptionalNumberPipe(10)) limit?: number,
@Query('limit', new ParseOptionalNumberPipe(5)) limit?: number,
) {
return await this.searchService.searchPlace(
query,
Expand Down

0 comments on commit cdb0491

Please sign in to comment.