From 04d130bb497546fb87f54756d4c8f6b759e10e06 Mon Sep 17 00:00:00 2001 From: cozy-ito Date: Thu, 8 May 2025 15:15:23 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B3=B5=EA=B3=A0=20=EC=83=81=EC=84=B8?= =?UTF-8?q?=20(=EC=82=AC=EC=9E=A5=EB=8B=98)=20=EA=B3=B5=EA=B3=A0=20?= =?UTF-8?q?=ED=8E=B8=EC=A7=91=20=EB=B2=84=ED=8A=BC=20=ED=81=B4=EB=A6=AD=20?= =?UTF-8?q?=EC=8B=9C,=20=ED=8E=98=EC=9D=B4=EC=A7=80=20=EC=9D=B4=EB=8F=99?= =?UTF-8?q?=20=EC=95=88=EB=90=98=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/NoticeDetailInfo/NoticeEmployerActionButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NoticeDetailInfo/NoticeEmployerActionButton.tsx b/src/components/NoticeDetailInfo/NoticeEmployerActionButton.tsx index 66cc8a3..00aefa0 100644 --- a/src/components/NoticeDetailInfo/NoticeEmployerActionButton.tsx +++ b/src/components/NoticeDetailInfo/NoticeEmployerActionButton.tsx @@ -36,7 +36,7 @@ function NoticeEmployerActionButton({ const navigate = useNavigate(); const moveToEditNoticePage = () => { - if (isMyShop && !isPastNotice && isClosed && !isStartApplication) { + if (isMyShop && !isPastNotice && !isClosed && !isStartApplication) { navigate(`/notice/edit/${noticeId}`); } };