mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-04 04:51:16 +08:00
missing semicolons
This commit is contained in:
parent
ebd5fe7a75
commit
98596fbdf4
1 changed files with 4 additions and 4 deletions
|
@ -370,20 +370,20 @@ function refreshAccountPage() {
|
|||
|
||||
//apply filters
|
||||
if(!activeFilters.includes(result.mode)){
|
||||
return
|
||||
return;
|
||||
}
|
||||
if(!activeFilters.includes(String(result.mode2))){
|
||||
return
|
||||
return;
|
||||
}
|
||||
if(!activeFilters.includes(result.language)){
|
||||
return
|
||||
return;
|
||||
}
|
||||
let puncfilter = "puncOff";
|
||||
if(result.punctuation){
|
||||
puncfilter = "puncOn";
|
||||
}
|
||||
if(!activeFilters.includes(puncfilter)){
|
||||
return
|
||||
return;
|
||||
}
|
||||
|
||||
if(wpmLast10count < 10){
|
||||
|
|
Loading…
Reference in a new issue