fix: add missing colon in Active Entities label on DashboardPage
Some checks failed
CI / Backend Tests (pull_request) Failing after 2m11s
CI / Frontend Tests (pull_request) Failing after 1m23s

This commit is contained in:
2026-03-27 15:28:12 -03:00
parent cf073be6b0
commit 46391948b3

View File

@@ -27,7 +27,7 @@ export default function DashboardPage() {
<div className="grid gap-4 md:grid-cols-2"> <div className="grid gap-4 md:grid-cols-2">
<div className="rounded-xl border border-slate-800 bg-slate-900/70 p-5 shadow-sm"> <div className="rounded-xl border border-slate-800 bg-slate-900/70 p-5 shadow-sm">
<p className="text-sm text-slate-400">Active Entities</p> <p className="text-sm text-slate-400">Active Entities:</p>
<p className="mt-1 text-2xl font-bold">{activeCount} active {activeCount === 1 ? 'entity' : 'entities'}</p> <p className="mt-1 text-2xl font-bold">{activeCount} active {activeCount === 1 ? 'entity' : 'entities'}</p>
</div> </div>
<div className="rounded-xl border border-slate-800 bg-slate-900/70 p-5 shadow-sm"> <div className="rounded-xl border border-slate-800 bg-slate-900/70 p-5 shadow-sm">