From 566f18e1039dafae15c75a2cb77cd634308c1ce2 Mon Sep 17 00:00:00 2001 From: dladncks1217 Date: Thu, 15 Feb 2024 23:04:29 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C?= =?UTF-8?q?=20=EC=BD=98=EC=86=94=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/trips/TripsItemList/TripsItemList.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend-monorepo/packages/hanglog-service/src/components/trips/TripsItemList/TripsItemList.tsx b/frontend-monorepo/packages/hanglog-service/src/components/trips/TripsItemList/TripsItemList.tsx index 97775ccd..034be236 100644 --- a/frontend-monorepo/packages/hanglog-service/src/components/trips/TripsItemList/TripsItemList.tsx +++ b/frontend-monorepo/packages/hanglog-service/src/components/trips/TripsItemList/TripsItemList.tsx @@ -22,10 +22,6 @@ import { PATH } from '@constants/path'; import { sortByNewest, sortByStartDate } from '@utils/sort'; import { queryClient } from '@/hooks/api/queryClient'; -interface TripsItemListProps { - trips: TripsData[]; -} - const TripsItemList = () => { const tripsData = queryClient.getQueryData(['trips']) as TripsData[]; @@ -36,7 +32,6 @@ const TripsItemList = () => { : tripsData?.slice().sort(sortByNewest); queryClient.setQueryData(['trips'], sortedTrips); - console.log(sortedTrips); }; return (