Files
Magent/frontend/app/admin/diagnostics/page.tsx
T
Assclaw b5e4c57e93
Magent CI/CD / verify (push) Successful in 11m34s
Magent CI/CD / deploy-prod (push) Skipped
Magent CI/CD / deploy-beta (push) Successful in 17s
Simplify settings workspace and fix responsive admin controls
2026-09-06 17:42:28 +12:00

16 lines
360 B
TypeScript

'use client'
import AdminShell from '../../ui/AdminShell'
import AdminDiagnosticsPanel from '../../ui/AdminDiagnosticsPanel'
export default function AdminDiagnosticsPage() {
return (
<AdminShell
title="Diagnostics"
subtitle="Check connections and investigate service problems."
>
<AdminDiagnosticsPanel />
</AdminShell>
)
}