Added "instructorGender" key to Speaking exams

This commit is contained in:
Tiago Ribeiro
2024-02-08 14:04:52 +00:00
parent 89250fb98e
commit 71f07af2eb
2 changed files with 2 additions and 0 deletions

View File

@@ -82,6 +82,7 @@ export interface SpeakingExam {
minTimer: number;
isDiagnostic: boolean;
variant?: Variant;
instructorGender: "male" | "female" | "varied";
}
export type Exercise =

View File

@@ -172,6 +172,7 @@ const SpeakingGeneration = () => {
minTimer,
variant: minTimer >= 14 ? "full" : "partial",
module: "speaking",
instructorGender: "varied",
};
axios