diff --git a/src/components/GenerateCourse/TestMyKnowledgeAction.tsx b/src/components/GenerateCourse/TestMyKnowledgeAction.tsx index ef676b02e..e38484bfc 100644 --- a/src/components/GenerateCourse/TestMyKnowledgeAction.tsx +++ b/src/components/GenerateCourse/TestMyKnowledgeAction.tsx @@ -120,7 +120,7 @@ export function TestMyKnowledgeAction(props: TestMyKnowledgeActionProps) {
)} {error && ( -
- - {error} +
+ + {error}
)} @@ -325,24 +325,27 @@ export function QuizItem(props: QuizItemProps) { return (
-
+
Question {counter} of {totalQuestions} -
+
{submitted && ( -
-

+
+

{title} {canMultiSelect ? '(Select Multiple)' : ''}

-
+
{options.map((option, index) => { let status: QuizOptionStatus = 'default'; if (submitted) { @@ -384,16 +387,16 @@ export function QuizItem(props: QuizItemProps) { })}
-
-
+
+
{submitted ? ( - + You got {correctAnswerCount} out of {totalQuestions} correct. ) : ( @@ -403,18 +406,18 @@ export function QuizItem(props: QuizItemProps) {
@@ -445,16 +448,16 @@ export function QuizOption(props: QuizOptionProps) {