cards show when a server errors/is offline

This commit is contained in:
Fishandchips321 2026-03-02 18:52:51 +00:00
parent 3cbc66a580
commit d85d4334f8
4 changed files with 14 additions and 2 deletions

View file

@ -4,7 +4,7 @@ import { apiUrl } from "./api";
export interface Server {
name?: string;
id: string;
online?: boolean;
errored: boolean;
owner: string;
url: string;
}