fix infinite loading icon when searching for an invalid player
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m5s

This commit is contained in:
Lee
2024-04-18 07:59:03 +01:00
parent 0c4a1ebda9
commit 211807f494
4 changed files with 5 additions and 5 deletions

View File

@ -69,7 +69,7 @@ export default async function Page({ params: { id } }: Params): Promise<ReactEle
<h1 className="text-xl">Lookup a Player</h1>
<p>You can enter a players uuid or username to get information about the player.</p>
<LookupPlayer currentPlayer={id[0]} />
<LookupPlayer currentPlayer={id && id[0]} />
</div>
{error && <ErrorCard message={error} />}