From af3102f86915a7f37ce35880a349913e6f1c3370 Mon Sep 17 00:00:00 2001 From: Jihyun Kim Date: Mon, 21 Oct 2024 17:11:44 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20FIX:=20able-date=20API=20=EC=9D=91?= =?UTF-8?q?=EB=8B=B5=20=EB=8D=B0=EC=9D=B4=ED=84=B0=20=EC=9D=B4=EB=A6=84=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20#1691?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/Presentation/pages/RegisterPage.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/Presentation/pages/RegisterPage.tsx b/frontend/src/Presentation/pages/RegisterPage.tsx index 20fcbfd25..9b952b464 100644 --- a/frontend/src/Presentation/pages/RegisterPage.tsx +++ b/frontend/src/Presentation/pages/RegisterPage.tsx @@ -142,9 +142,8 @@ const RegisterPage = () => { useEffect(() => { const fetchPresentationAbleDates = async () => { try { - // TODO: BE(ableDates -> results) 변경 요청 const response = await axiosGetPresentationAbleDates(); - const availableDates = response.data.ableDates; + const availableDates = response.data.results; const formattedAvailableDates = availableDates.map( (dateTime: string) => { console.log(dateTime);