cleanup
All checks were successful
deploy / deploy (push) Successful in 55s

This commit is contained in:
Lee
2023-10-23 11:01:36 +01:00
parent 05e257f8be
commit 77d6d8b60a
2 changed files with 22 additions and 6 deletions

View File

@ -132,7 +132,7 @@ export const useScoresaberScoresStore = create<ScoreSaberScoresStore>()(
while (search) {
page++;
const newScores = await ScoreSaberAPI.fetchScores(playerId, page);
console.log("scanning page", page, "for", playerId);
console.log("Scanning page", page, "for", playerId);
if (newScores?.scores.length == 0 || newScores == undefined) break;
for (const score of newScores.scores) {
@ -194,8 +194,6 @@ export const useScoresaberScoresStore = create<ScoreSaberScoresStore>()(
lastUpdated: Date.now(),
});
console.log(oldScores);
if (newScoresCount > 0) {
console.log(`Found ${newScoresCount} new scores for ${playerId}`);
}