diff --git a/frontend/src/pages/status/StatusPage.tsx b/frontend/src/pages/status/StatusPage.tsx index 3344d1d..35fa86d 100644 --- a/frontend/src/pages/status/StatusPage.tsx +++ b/frontend/src/pages/status/StatusPage.tsx @@ -29,6 +29,12 @@ import { cn } from "@/lib/utils"; const REFRESH_INTERVAL_MS = 30_000; +type HealthRecord = { + group: string; + name: string; + data: Record; +}; + export function StatusPage() { const [status, setStatus] = useState(null); const [error, setError] = useState(null); @@ -67,19 +73,22 @@ export function StatusPage() {
-
-
-

UmpleOnline Status

- {status ? : null} -
-

- Developer monitoring for the backend, compiler, collaboration, LSP, and execution services. -

- {status ? ( -

- Last refresh {formatDate(status.generatedAt)}. Auto-refreshes every 30 seconds. +

+ +
+
+

UmpleOnline Status

+ {status ? : null} +
+

+ Developer monitoring for the backend, compiler, collaboration, LSP, and execution services.

- ) : null} + {status ? ( +

+ Last refresh {formatDate(status.generatedAt)}. Auto-refreshes every 30 seconds. +

+ ) : null} +