Polish: Use strong types in App and CompleteStep

This commit is contained in:
rcourtman 2025-12-23 12:39:24 +00:00
parent ea901bac43
commit a00a614f3f

View file

@ -1136,7 +1136,7 @@ function AppLayout(props: {
const utilityTabs = createMemo(() => {
const allAlerts = props.state().activeAlerts || [];
const breakdown = allAlerts.reduce(
(acc, alert: any) => {
(acc, alert: Alert) => {
if (alert?.acknowledged) return acc;
const level = String(alert?.level || '').toLowerCase();
if (level === 'critical') {