diff --git a/src/components/Exercises/index.tsx b/src/components/Exercises/index.tsx index e4d1e845..9eb0b1df 100644 --- a/src/components/Exercises/index.tsx +++ b/src/components/Exercises/index.tsx @@ -27,18 +27,18 @@ export interface CommonProps { export const renderExercise = (exercise: Exercise, onNext: (userSolutions: UserSolution) => void, onBack: (userSolutions: UserSolution) => void) => { switch (exercise.type) { case "fillBlanks": - return ; + return ; case "trueFalse": - return ; + return ; case "matchSentences": - return ; + return ; case "multipleChoice": - return ; + return ; case "writeBlanks": - return ; + return ; case "writing": - return ; + return ; case "speaking": - return ; + return ; } }; diff --git a/src/exams/Listening.tsx b/src/exams/Listening.tsx index cb349650..66fe4499 100644 --- a/src/exams/Listening.tsx +++ b/src/exams/Listening.tsx @@ -1,9 +1,5 @@ import {ListeningExam, UserSolution} from "@/interfaces/exam"; import {useEffect, useState} from "react"; -import Icon from "@mdi/react"; -import {mdiArrowRight} from "@mdi/js"; -import clsx from "clsx"; -import {infoButtonStyle} from "@/constants/buttonStyles"; import {renderExercise} from "@/components/Exercises"; import {renderSolution} from "@/components/Solutions"; import ModuleTitle from "@/components/Medium/ModuleTitle";