From 00f608297636eabc0f99f0ccd3f89822ab74fc64 Mon Sep 17 00:00:00 2001 From: kyu <2066apple@naver.com> Date: Sat, 16 Sep 2023 14:10:37 +0900 Subject: [PATCH] =?UTF-8?q?[=20fix=20]=20=EC=98=88=EC=A0=95=EC=9D=BC?= =?UTF-8?q?=EB=95=90=20=ED=86=A0=EC=8A=A4=ED=8A=B8=20=EB=9D=84=EC=9A=B0?= =?UTF-8?q?=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/nottodo/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/nottodo/index.tsx b/src/pages/nottodo/index.tsx index 531c545..f17a16e 100644 --- a/src/pages/nottodo/index.tsx +++ b/src/pages/nottodo/index.tsx @@ -7,7 +7,7 @@ import { Tabs } from '@/components/tab/Tabs'; import { Tab } from '@/components/tab/Tab'; import { BottomPopup } from '@/components/popup/BottomPopup'; import { DeleteTitlePopup } from '@/components/popup/PopupGroup'; -import { Toast as toast } from '@/components/toast/Toast'; +import { Toast, Toast as toast } from '@/components/toast/Toast'; import { deleteNottodo, getNottodoList, orderBy } from '@/api/nottodo'; import { ReactComponent as ArrowDown } from '@/assets/img/icn_arrow_down.svg'; @@ -74,12 +74,12 @@ export default function NotTodoPage() { setIsMenuOpen(true); }; - const handleMoveEditPage = (nottodo: nottodoProps) => { + const handleClickCard = (nottodo: nottodoProps) => { setCurrentNottodo(nottodo); if (nottodo.progressState === 'COMPLETE') { router(`/nottodo/edit/${nottodo.notToDoId}?state=complete`); } else if (nottodo.progressState === 'BEFORE_START') { - router(`/nottodo/edit/${nottodo.notToDoId}`); + Toast('도전일이 되면 열어볼 수 있어요'); } }; @@ -123,7 +123,7 @@ export default function NotTodoPage() { endDate={new Date(v.endDate)} goal={v.goal} openMenu={() => handleOpenMenu(v)} - onClick={() => handleMoveEditPage(v)} + onClick={() => handleClickCard(v)} /> ))} {nottodoList.filter((v) => (progressState !== '' ? v.progressState === progressState : true)).length < 3 ? (