mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 21:33:40 +08:00
fixed funbox type not showing in results screen
This commit is contained in:
parent
2df9fc379c
commit
ecbd6000c3
1 changed files with 2 additions and 2 deletions
|
@ -1658,8 +1658,8 @@ export function finish(difficultyFailed = false) {
|
|||
if (Config.blindMode) {
|
||||
testType += "<br>blind";
|
||||
}
|
||||
if (Funbox.active !== "none") {
|
||||
testType += "<br>" + Funbox.active.replace(/_/g, " ");
|
||||
if (Funbox.funboxSaved !== "none") {
|
||||
testType += "<br>" + Funbox.funboxSaved.replace(/_/g, " ");
|
||||
}
|
||||
if (Config.difficulty == "expert") {
|
||||
testType += "<br>expert";
|
||||
|
|
Loading…
Reference in a new issue