We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa0bf63 commit 1da22d0Copy full SHA for 1da22d0
1 file changed
client/uis/screens/examscreen.ts
@@ -171,7 +171,7 @@ export class ExamModeUI extends UIScreen {
171
const minutes = Math.floor(timeLeft / 60);
172
const seconds = timeLeft % 60;
173
const formattedTime = `${(minutes > 0 ? `${minutes} minutes and ` : '')} ${seconds} seconds`;
174
- form.examStartTimer.innerText = `The exam starts in ${formattedTime}.`;
+ form.examStartTimer.innerText = `You may start your exam in ${formattedTime}.`;
175
176
if (this._examStartTime.getTime() <= Date.now()) {
177
// Clear the timer and enable the button
0 commit comments