feat: add APs Needing Attention dashboard card

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jason Staack
2026-03-15 20:06:25 -05:00
parent 5ed98f043e
commit 09a3fdcfeb
2 changed files with 79 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ import { EventsTimeline } from '@/components/dashboard/EventsTimeline'
import { BandwidthChart, type BandwidthDevice } from '@/components/dashboard/BandwidthChart'
import { AlertSummary } from '@/components/dashboard/AlertSummary'
import { QuickActions } from '@/components/dashboard/QuickActions'
import { WirelessIssues } from '@/components/dashboard/WirelessIssues'
// ─── Types ───────────────────────────────────────────────────────────────────
@@ -289,6 +290,11 @@ export function FleetDashboard() {
criticalAlerts={criticalCount}
/>
</div>
{/* Wireless Issues */}
<div>
<WirelessIssues tenantId={tenantId || null} />
</div>
</div>
</>
)}