From f6688435bc7de1cf263b9bc578b5545fa975275f Mon Sep 17 00:00:00 2001 From: Nayeon Keum Date: Fri, 15 Sep 2023 00:03:47 +0900 Subject: [PATCH] [feat/#72] Fix: delete window reload --- src/components/Submit.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Submit.tsx b/src/components/Submit.tsx index 52a74cd..bf2c5bc 100644 --- a/src/components/Submit.tsx +++ b/src/components/Submit.tsx @@ -87,7 +87,8 @@ const Submit: FC = () => { api.client .post("/assignments/" + assignment_id + "/auto", params) .then(() => { - window.location.reload(); + console.log("자동채점 api 호출"); + // window.location.reload(); }); }); }