From f42c5f9681378b618a97474157b8487c548852c4 Mon Sep 17 00:00:00 2001 From: dladncks1217 Date: Tue, 19 Sep 2023 21:33:55 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20CommunityTripsData=ED=83=80?= =?UTF-8?q?=EC=9E=85=20lastPageIndex=20=EB=84=A4=EC=9D=B4=EB=B0=8D=20?= =?UTF-8?q?=EB=B3=B5=EA=B5=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/CommunityPage/CommunityPage.tsx | 2 +- frontend/src/types/trips.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/CommunityPage/CommunityPage.tsx b/frontend/src/pages/CommunityPage/CommunityPage.tsx index 61e659f1a..22533793f 100644 --- a/frontend/src/pages/CommunityPage/CommunityPage.tsx +++ b/frontend/src/pages/CommunityPage/CommunityPage.tsx @@ -48,7 +48,7 @@ const CommunityPage = () => { diff --git a/frontend/src/types/trips.ts b/frontend/src/types/trips.ts index 4bd4a15ab..216bc3912 100644 --- a/frontend/src/types/trips.ts +++ b/frontend/src/types/trips.ts @@ -27,7 +27,7 @@ export interface RecommendedTripsData { } export interface CommunityTripsData { - lastPage: number; + lastPageIndex: number; trips: CommunityTripData[]; }