Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-05-14 23:19:28 +00:00
co-authored by renee-png
parent b8b9dbf827
commit d9aa1ab683
+1 -1
View File
@@ -261,7 +261,7 @@ function Dashboard() {
<Link key={c.label} to={c.to}>
<div className={`rounded-lg p-4 ${c.tone} hover:opacity-80 transition-opacity`}>
<div className="text-xs text-muted-foreground mb-1">{c.label}</div>
<div className="font-serif text-2xl">{loading ? "—" : c.value}</div>
<div className="font-serif text-2xl tabular-nums truncate" title={loading ? "" : String(c.value)}>{loading ? "—" : c.value}</div>
</div>
</Link>
))}