diff --git a/client/src/components/QuizRunner.tsx b/client/src/components/QuizRunner.tsx
index 0b0e62e..a02c5f8 100644
--- a/client/src/components/QuizRunner.tsx
+++ b/client/src/components/QuizRunner.tsx
@@ -433,13 +433,20 @@ export default function QuizRunner({ defaultMode = 'all', defaultEntryId, autoSt
>
)}
{showResult && (
-
+ <>
+ {lastCorrect && !showExplanation && (
+
+ )}
+
+ >
)}
- {showResult && !lastCorrect && }
+ {shouldShowExplanation && }
);
}