From edfbd159f537617074666def4248a08444d710c4 Mon Sep 17 00:00:00 2001 From: kyu <2066apple@naver.com> Date: Sat, 16 Sep 2023 14:07:20 +0900 Subject: [PATCH] =?UTF-8?q?[=20fix=20]=20=EC=A7=84=ED=96=89=20=EC=98=88?= =?UTF-8?q?=EC=A0=95=20=EB=82=AB=ED=88=AC=EB=91=90=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/nottodo/index.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/pages/nottodo/index.tsx b/src/pages/nottodo/index.tsx index e6db73e..531c545 100644 --- a/src/pages/nottodo/index.tsx +++ b/src/pages/nottodo/index.tsx @@ -74,9 +74,13 @@ export default function NotTodoPage() { setIsMenuOpen(true); }; - const handleMoveDetailPage = (nottodo: nottodoProps) => { + const handleMoveEditPage = (nottodo: nottodoProps) => { setCurrentNottodo(nottodo); - router(`/nottodo/edit/${nottodo.notToDoId}?state=complete`); + if (nottodo.progressState === 'COMPLETE') { + router(`/nottodo/edit/${nottodo.notToDoId}?state=complete`); + } else if (nottodo.progressState === 'BEFORE_START') { + router(`/nottodo/edit/${nottodo.notToDoId}`); + } }; return ( @@ -119,7 +123,7 @@ export default function NotTodoPage() { endDate={new Date(v.endDate)} goal={v.goal} openMenu={() => handleOpenMenu(v)} - onClick={v.progressState === 'COMPLETE' ? () => handleMoveDetailPage(v) : () => null} + onClick={() => handleMoveEditPage(v)} /> ))} {nottodoList.filter((v) => (progressState !== '' ? v.progressState === progressState : true)).length < 3 ? (