mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-04 04:51:16 +08:00
fixed a bug where the account page would not load
This commit is contained in:
parent
3dd1308cd0
commit
0fb86901a3
1 changed files with 1 additions and 1 deletions
|
@ -391,7 +391,7 @@ let filteredResults = [];
|
|||
let visibleTableLines = 0;
|
||||
|
||||
function loadMoreLines(){
|
||||
if(filteredResults == []) return;
|
||||
if(filteredResults == [] || filteredResults.length == 0) return;
|
||||
for(let i = visibleTableLines; i < visibleTableLines+10; i++){
|
||||
result = filteredResults[i];
|
||||
let withpunc = '';
|
||||
|
|
Loading…
Reference in a new issue