From f085223b0ac8a7cea2ce4f821a903813a911a9b9 Mon Sep 17 00:00:00 2001 From: he2e2 Date: Tue, 10 Dec 2024 09:13:43 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20MainPage=20=EA=B2=8C=EB=8D=94=EB=A7=81?= =?UTF-8?q?=20=EC=9D=B4=EC=8A=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/gathering/api/gathering.api.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/features/gathering/api/gathering.api.ts b/src/features/gathering/api/gathering.api.ts index 3951d2a..3440ff1 100644 --- a/src/features/gathering/api/gathering.api.ts +++ b/src/features/gathering/api/gathering.api.ts @@ -89,7 +89,8 @@ export const mainGatheringApi = { // 메인 페이지용 게더링 목록 조회 (최신 4개) getMainGatherings: async (): Promise => { const params: GatheringListParams = { - page: 1, + sort: '프로젝트', + page: 0, size: 4, status: '모집중', // 활성화된 게더링만 표시 };