Update src/components/status/LiveHealthCard.tsx

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Alexa Amundson
2025-11-20 20:59:11 -06:00
committed by GitHub
parent d702effb22
commit 856cb6854e

View File

@@ -55,7 +55,7 @@ export function LiveHealthCard() {
const statusText = loading ? 'CHECKING' : health?.ok ? 'ONLINE' : 'OFFLINE'; const statusText = loading ? 'CHECKING' : health?.ok ? 'ONLINE' : 'OFFLINE';
const statusClass = loading ? 'badge' : health?.ok ? 'badge' : 'status-bad'; const statusClass = loading ? 'badge' : health?.ok ? 'badge' : 'status-bad';
const checkedAt = health?.ts || lastChecked; const checkedAt = lastChecked;
return ( return (
<div className="card"> <div className="card">