diff --git a/frontend/src/components/WrittenQuestionExercise.tsx b/frontend/src/components/WrittenQuestionExercise.tsx index 6ffc8e9..ed3803d 100644 --- a/frontend/src/components/WrittenQuestionExercise.tsx +++ b/frontend/src/components/WrittenQuestionExercise.tsx @@ -56,12 +56,12 @@ export default function WrittenQuestionExercise({question, wordBank, expected, c const ResponseSection = (correct: string | null, reason: string | null) => { if (!answered) { return ( -
-
+
+
{remainingWords.map((word, index) => ( handleWordBankClick(word)}> {word} @@ -80,12 +80,10 @@ export default function WrittenQuestionExercise({question, wordBank, expected, c ) } else { return ( -
-
-

{correct}

-

{reason}

- -
+
+

{correct}

+

{reason}

+
) } @@ -96,7 +94,7 @@ export default function WrittenQuestionExercise({question, wordBank, expected, c
{question}
-
+
{selectedWords.map((word, index) => ( -

Recall Meaning

{question}
diff --git a/frontend/src/pages/Lesson.tsx b/frontend/src/pages/Lesson.tsx index 23405d5..f055db5 100644 --- a/frontend/src/pages/Lesson.tsx +++ b/frontend/src/pages/Lesson.tsx @@ -66,7 +66,6 @@ export default function Course() { return (
-

Course Page

{renderQuestion(currQuestion)}