fix(overlay): remove debug
All checks were successful
deploy / deploy (push) Successful in 59s

This commit is contained in:
Lee
2023-11-06 18:36:21 +00:00
parent 638dc528ad
commit e16727713c
3 changed files with 22 additions and 29 deletions

View File

@ -28,9 +28,6 @@ async function fetchPlayerData(
);
const json = await response.json();
// Check if there was an error fetching the user data
console.log(json);
return json as BeatLeaderPlayer;
}
@ -67,9 +64,6 @@ async function fetchScores(
);
const json = await response.json();
// Check if there was an error fetching the user data
console.log(json);
const metadata = json.metadata;
return {
scores: json.data as BeatleaderScore[],