Skip to content

Commit

Permalink
[feat/#478] 🐛 fix: 엔터 제출 시 두 번 가던거 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbae94 committed May 17, 2024
1 parent ee608f0 commit 0207604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatty-fe/src/app/(game)/quiz-room/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const QuizRoom = ({ params }: { params: { id: number } }) => {
!unableSubmit &&
(userAnswer || selectedOption)
) {
// event.preventDefault();
event.preventDefault();
submitQuiz(params.id);
}
};
Expand Down

0 comments on commit 0207604

Please sign in to comment.