From b3220eb97533b8bbb8bf09d013bebfc20aa37840 Mon Sep 17 00:00:00 2001 From: HeeDragoN1123 Date: Wed, 1 Nov 2023 20:48:02 +0900 Subject: [PATCH] =?UTF-8?q?[=EC=9E=91=EC=97=85=EC=A4=91]=20git=20pull=20?= =?UTF-8?q?=ED=9B=84=20=EC=BB=A4=EB=B0=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/searches/searches.controller.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/searches/searches.controller.ts b/src/searches/searches.controller.ts index 0899394..09b8a6f 100644 --- a/src/searches/searches.controller.ts +++ b/src/searches/searches.controller.ts @@ -12,7 +12,6 @@ export class SearchesController { @Get() @ApiOperation({ summary: '키워드 검색, 카테고리, 지역, 위치인증 필터링' }) async searchByLocation(@Query() searchesDto: SearchesDto) { - const events = await this.searchesService.search(searchesDto); const event = events.map((item) => { @@ -26,5 +25,5 @@ export class SearchesController { }; }); return event; - } + } }