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; minTimer: number;
isDiagnostic: boolean; isDiagnostic: boolean;
variant?: Variant; variant?: Variant;
instructorGender: "male" | "female" | "varied";
} }
export type Exercise = export type Exercise =

View File

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