update error messages
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 55s

This commit is contained in:
Lee
2024-04-16 19:35:07 +01:00
parent b939f9b807
commit baddd1f684
4 changed files with 8 additions and 8 deletions

View File

@ -32,10 +32,10 @@ export function LookupServer() {
};
return (
<div className="flex gap-2 justify-center mt-2">
<form className="flex gap-2 justify-center mt-2">
<Input className="w-fit" placeholder="Server hostname" value={hostname} onChange={setHostnameValue} />
<Button onClick={() => lookupServer(ServerPlatform.Java)}>Java</Button>
<Button onClick={() => lookupServer(ServerPlatform.Bedrock)}>Bedrock</Button>
</div>
</form>
);
}