remove debug and cleanup
All checks were successful
deploy / deploy (push) Successful in 58s

This commit is contained in:
Lee
2023-10-23 06:16:51 +01:00
parent 2b91388b95
commit 1001e68e1a
5 changed files with 31 additions and 11 deletions

View File

@ -59,7 +59,7 @@ export default function Player({ params }: { params: { id: string } }) {
return;
}
ScoreSaberAPI.getPlayerInfo(params.id).then((playerResponse) => {
ScoreSaberAPI.fetchPlayerData(params.id).then((playerResponse) => {
if (!playerResponse) {
setError(true);
setErrorMessage("Failed to fetch player. Is the ID correct?");