From 77123ed147ea96753f55bfa82a07e2d134762898 Mon Sep 17 00:00:00 2001 From: rail <78732904+jongse7@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:50:50 +0900 Subject: [PATCH 1/2] =?UTF-8?q?reset:=20main=20=EB=B8=8C=EB=9E=9C=EC=B9=98?= =?UTF-8?q?=20=EC=BB=A4=EB=B0=8B=20=EB=90=98=EB=8F=8C=EB=A6=AC=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 4ef75865..561471c1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -28,7 +28,7 @@ const queryClient = new QueryClient({ }); function App() { - /* 총학 홈페이지 접근 시 ssuketch로 리다이렉트 되도록 임시 설정 */ + /* 총학 홈페이지 접근 시 ssuketch로 리다이렉트 되도록 임시 설정. */ useEffect(() => { if (window.location.pathname !== '/beta') { if (window.location.pathname === '/auth/callback') { From 6fec011d66434e6fbcd2a0c34666b7705d634fb9 Mon Sep 17 00:00:00 2001 From: dvp-tae Date: Wed, 23 Oct 2024 22:59:34 +0900 Subject: [PATCH 2/2] =?UTF-8?q?hotfix:=20=EC=B2=AD=EC=9B=90=20=EA=B8=80=20?= =?UTF-8?q?=EC=88=98=EC=A0=95=20isNotice=20=EC=86=8D=EC=84=B1=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../edit/containers/PetitionNoticeEditorSection.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/petition-notice/edit/containers/PetitionNoticeEditorSection.tsx b/src/pages/petition-notice/edit/containers/PetitionNoticeEditorSection.tsx index 1f71b36a..c4b51a1c 100644 --- a/src/pages/petition-notice/edit/containers/PetitionNoticeEditorSection.tsx +++ b/src/pages/petition-notice/edit/containers/PetitionNoticeEditorSection.tsx @@ -103,7 +103,7 @@ export function PetitionNoticeEditorSection() { if (title) { const check = window.confirm('청원 글을 등록하시겠습니까?'); if (check) { - console.log(posts); + // console.log(posts); await postPostMutation.mutateAsync(posts); navigate('/petition-notice'); } else { @@ -126,6 +126,7 @@ export function PetitionNoticeEditorSection() { categoryCode: initialCategoryName, thumbnailImage: null, postFileList: postFileList, + isNotice: false, }, }; try {