Refactor Notices and System Health pane (#24243)

* refactor notices

* show startup message for enrichments in health pane

* tweaks
This commit is contained in:
Josh Hawkins
2026-09-12 07:30:04 -06:00
committed by Nicolas Mowen
parent 5cef6823a6
commit 7bc32fd4c9
50 changed files with 2471 additions and 898 deletions
+7 -2
View File
@@ -1,10 +1,15 @@
import HardwarePane from "@/components/health/HardwarePane";
import NoticesPane from "@/components/health/NoticesPane";
import type { NoticeFilter } from "@/types/health";
export default function HealthMetrics() {
type HealthMetricsProps = {
noticeFilter: NoticeFilter;
};
export default function HealthMetrics({ noticeFilter }: HealthMetricsProps) {
return (
<div className="scrollbar-container mt-4 flex size-full flex-col gap-4 overflow-y-auto">
<NoticesPane />
<NoticesPane filter={noticeFilter} />
<HardwarePane />
</div>
);