add toasts for invalid player and invalid server
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m18s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m18s
This commit is contained in:
@ -119,7 +119,7 @@ export default async function Page({ params: { platform, hostname } }: Params):
|
||||
{error && <ErrorCard message={error} />}
|
||||
{server != null && (
|
||||
<Card className="w-max xs:w-fit">
|
||||
<div className="flex gap-4 flex-col">
|
||||
<div className="flex gap-2 flex-col">
|
||||
<div className="flex gap-4 flex-col xs:flex-row">
|
||||
{favicon && (
|
||||
<div className="flex justify-center xs:justify-start">
|
||||
@ -135,7 +135,7 @@ export default async function Page({ params: { platform, hostname } }: Params):
|
||||
)}
|
||||
|
||||
<div className="flex flex-col">
|
||||
<h2 className="text-xl text-primary">{server.hostname}</h2>
|
||||
<h2 className="text-xl text-primary font-semibold">{server.hostname}</h2>
|
||||
<div>
|
||||
<p>
|
||||
Players online: {formatNumber(server.players.online)}/{formatNumber(server.players.max)}
|
||||
|
Reference in New Issue
Block a user