From ca649f09817e3129978699ca7574b15d83b351e8 Mon Sep 17 00:00:00 2001 From: 00kang Date: Tue, 1 Oct 2024 16:54:38 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/TravelSection.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/TravelSection.tsx b/src/components/TravelSection.tsx index 0775c3e0..c67bc3c4 100644 --- a/src/components/TravelSection.tsx +++ b/src/components/TravelSection.tsx @@ -59,13 +59,11 @@ const TravelSection = () => { const nextTravel = () => { const newIndex = (currentIndex + 1) % travelOptions.length; setCurrentIndex(newIndex); - getCardInfo(newIndex); }; const prevTravel = () => { const newIndex = (currentIndex - 1 + travelOptions.length) % travelOptions.length; setCurrentIndex(newIndex); - getCardInfo(newIndex); }; const handleCardClick = (link: string) => {