diff --git a/squarenotsquare/src/screens/Score.js b/squarenotsquare/src/screens/Score.js index 93d2862..acdfbe8 100644 --- a/squarenotsquare/src/screens/Score.js +++ b/squarenotsquare/src/screens/Score.js @@ -20,7 +20,7 @@ function Score(props){ function calculateTimerScore(user = userRedux){ if (user !== null){ - let score = (60 - user.lastGameTime) * 1000; + let score = Math.round((60 - user.lastGameTime) * 1000); if (score < 0) { return 0; } else {