From cb2bbf4c0d439b98f112f97a6781a07f1bf31e07 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 8 Jan 2026 02:44:19 +0100 Subject: [PATCH] Update QuizRunner to include response in deriving correct text --- client/src/components/QuizRunner.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/QuizRunner.tsx b/client/src/components/QuizRunner.tsx index cd83f2e..a3ba75a 100644 --- a/client/src/components/QuizRunner.tsx +++ b/client/src/components/QuizRunner.tsx @@ -514,7 +514,7 @@ export default function QuizRunner({ defaultMode = 'all', defaultEntryId, autoSt } const targets = resolveTargets(currentQuestion); - const correctText = deriveCorrectText(currentQuestion); + const correctText = deriveCorrectText(currentQuestion, response); const shouldShowExplanation = showResult && (!lastCorrect || showExplanation); return (