Hotfix Mission.jsx fake unused import

This commit is contained in:
Olivier Gagnon
2021-05-03 17:24:39 -04:00
parent b99711788f
commit c6f0551709
4 changed files with 27 additions and 22 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ function convertTimeMsToTimeElapsedString(time: number, showMilli=false): string
const secTruncMinutes: number = secTruncHours % secondPerMinute;
const milliTruncSec: string = (() => {
let str: string = `${time % millisecondsPerSecond}`;
let str = `${time % millisecondsPerSecond}`;
while(str.length < 3) str = "0"+str;
return str;
})()