Browse Source

remove placeholder timer on high score screen

pull/8/head
Tim Glasgow 2 years ago
parent
commit
d30405e5ba
  1. 4
      squarenotsquare/src/screens/HighScore.js

4
squarenotsquare/src/screens/HighScore.js

@ -20,9 +20,7 @@ function HighScore(){
if (!scoresLoaded) {
loadScores()
.then(() => {
setTimeout( () => {
setScoresLoaded(true);
}, 1000)
setScoresLoaded(true);
});
}
}, [scoresLoaded])

Loading…
Cancel
Save