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

@ -27,7 +27,7 @@ export default function SearchPlayer() {
const id = search.split("/").pop();
if (id == undefined) return;
const player = await ScoreSaberAPI.getPlayerInfo(id);
const player = await ScoreSaberAPI.fetchPlayerData(id);
if (player == undefined) return;
setPlayers([player]);