Skip to content

Commit 98596fb

Browse files
committed
missing semicolons
1 parent ebd5fe7 commit 98596fb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

public/js/account.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -370,20 +370,20 @@ function refreshAccountPage() {
370370

371371
//apply filters
372372
if(!activeFilters.includes(result.mode)){
373-
return
373+
return;
374374
}
375375
if(!activeFilters.includes(String(result.mode2))){
376-
return
376+
return;
377377
}
378378
if(!activeFilters.includes(result.language)){
379-
return
379+
return;
380380
}
381381
let puncfilter = "puncOff";
382382
if(result.punctuation){
383383
puncfilter = "puncOn";
384384
}
385385
if(!activeFilters.includes(puncfilter)){
386-
return
386+
return;
387387
}
388388

389389
if(wpmLast10count < 10){

0 commit comments

Comments
 (0)