- refactor: replace Output component with OutputForms and update related hooks and types

This commit is contained in:
2025-11-26 13:00:41 +00:00
parent 90eb976092
commit e07f769288
14 changed files with 232 additions and 104 deletions

View File

@@ -19,7 +19,7 @@ const SystemHealth = ({ startTime, uptime, statuses, isLoading, isError, dateUpd
if (isLoading) {
return <span className="text-slate-500">Loading system health</span>;
}
console.log(statuses);
return (
<div className="h-100 md:h-75 overflow-y-auto flex flex-col gap-4">
<div className="p-2 border-b border-gray-600 grid grid-cols-2 justify-between">

View File

@@ -14,7 +14,6 @@ const SystemOverview = () => {
const isError = query?.isError;
const dateUpdatedAt = query?.dataUpdatedAt;
console.log(query?.dataUpdatedAt);
return (
<Card className="p-4">
<CardHeader title="System Health" refetch={query?.refetch} icon={faArrowsRotate} />