cleanup
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m5s

This commit is contained in:
Lee
2024-04-18 05:37:48 +01:00
parent 4505a61653
commit 269653ed55
2 changed files with 13 additions and 7 deletions

View File

@ -116,7 +116,7 @@ export default async function Page({ params: { platform, hostname } }: Params):
<h1 className="text-xl">Lookup a {invalidPlatform ? "" : capitalizeFirstLetter(platform)} Server</h1>
<p>You can enter a server hostname to get information about the server.</p>
<LookupServer currentPlatform={capitalizeFirstLetter(platform)} />
<LookupServer currentPlatform={platform.toLocaleLowerCase()} />
</div>
{error && <ErrorCard message={error} />}