Browse Source

Missed loop increment

pull/11/head
Tim Glasgow 2 years ago
parent
commit
8a1165f83c
  1. 1
      squarenotsquare/src/realm/repos/ScoreRepo.js

1
squarenotsquare/src/realm/repos/ScoreRepo.js

@ -44,6 +44,7 @@ export default class ScoreRepo {
return highScores;
}
highScores.push({user: row.user, value: row.value});
++i;
});
return highScores;
}

Loading…
Cancel
Save