diff --git a/app/(app)/page.tsx b/app/(app)/page.tsx index 584afa0..7a8eb1d 100644 --- a/app/(app)/page.tsx +++ b/app/(app)/page.tsx @@ -34,13 +34,13 @@ export default async function DashboardPage() {
- Completed sessions + Completed sessions {summary.count} - Total play time + Total play time {(summary.totalDurationMs / 3_600_000).toFixed(1)}h @@ -48,7 +48,7 @@ export default async function DashboardPage() { - Replays + Replays {summary.totalReplays} diff --git a/components/stats/SessionsSummaryCards.tsx b/components/stats/SessionsSummaryCards.tsx index 4014819..faf3906 100644 --- a/components/stats/SessionsSummaryCards.tsx +++ b/components/stats/SessionsSummaryCards.tsx @@ -20,19 +20,19 @@ export function SessionsSummaryCards({ summary }: { summary: SessionsSummary })
- Completed sessions + Completed sessions {summary.count} - Total time + Total time {formatHours(summary.totalDurationMs)} - Avg session length + Avg session length {Math.round(summary.avgDurationMs / 60_000)}m @@ -40,7 +40,7 @@ export function SessionsSummaryCards({ summary }: { summary: SessionsSummary }) - Replays + Replays {formatReplays(summary.totalReplays)}