From fb213e8c15afcf7406a5d465dfa958237e0003f2 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 8 Jan 2026 02:11:37 +0100 Subject: [PATCH] Remove unused props from QuestionRenderer --- client/src/components/QuizRunner.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/src/components/QuizRunner.tsx b/client/src/components/QuizRunner.tsx index 72b01da..4aac5e8 100644 --- a/client/src/components/QuizRunner.tsx +++ b/client/src/components/QuizRunner.tsx @@ -93,14 +93,12 @@ function QuestionRenderer({ onChange, showResult, lastCorrect, - canSubmit, }: { question: QuizQuestionWithEntry; response: any; onChange: (val: any) => void; showResult: boolean; lastCorrect: boolean; - canSubmit: boolean; }) { const payload = question.payload || {}; const type = question.type || '';