From 02076047e8733089e52d446ed1b396ca9bf6fecf Mon Sep 17 00:00:00 2001 From: ryanbae94 Date: Fri, 17 May 2024 17:36:32 +0900 Subject: [PATCH] =?UTF-8?q?[feat/#478]=20:bug:=20fix:=20=EC=97=94=ED=84=B0?= =?UTF-8?q?=20=EC=A0=9C=EC=B6=9C=20=EC=8B=9C=20=EB=91=90=20=EB=B2=88=20?= =?UTF-8?q?=EA=B0=80=EB=8D=98=EA=B1=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chatty-fe/src/app/(game)/quiz-room/[id]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatty-fe/src/app/(game)/quiz-room/[id]/page.tsx b/chatty-fe/src/app/(game)/quiz-room/[id]/page.tsx index 981213ec..ba13d1ef 100644 --- a/chatty-fe/src/app/(game)/quiz-room/[id]/page.tsx +++ b/chatty-fe/src/app/(game)/quiz-room/[id]/page.tsx @@ -97,7 +97,7 @@ const QuizRoom = ({ params }: { params: { id: number } }) => { !unableSubmit && (userAnswer || selectedOption) ) { - // event.preventDefault(); + event.preventDefault(); submitQuiz(params.id); } };