Update src/components/player/SearchPlayer.tsx
All checks were successful
deploy / deploy (push) Successful in 55s

This commit is contained in:
Lee 2023-10-23 20:13:47 +00:00
parent 3ef737770d
commit 7a81a88c5b

@ -45,7 +45,7 @@ export default function SearchPlayer() {
// Take the user to the first account // Take the user to the first account
if (players.length > 0) { if (players.length > 0) {
window.location.href = `/player/${players[0].id}`; window.location.href = `/player/${players[0].id}/scoresaber/top/1`;
} }
} }