fix: add missing colon in Active Entities label on DashboardPage #1

Merged
sancho41 merged 5 commits from feature/testing into develop 2026-03-27 16:18:59 -03:00
Showing only changes of commit 46391948b3 - Show all commits

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">