From 8a1165f83c3d910189d6d0e3ea6e239ce7dc7077 Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Thu, 11 Aug 2022 18:35:57 -0500 Subject: [PATCH] Missed loop increment --- squarenotsquare/src/realm/repos/ScoreRepo.js | 1 + 1 file changed, 1 insertion(+) diff --git a/squarenotsquare/src/realm/repos/ScoreRepo.js b/squarenotsquare/src/realm/repos/ScoreRepo.js index 41e75a0..22ef826 100644 --- a/squarenotsquare/src/realm/repos/ScoreRepo.js +++ b/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; }