diff --git a/src/routes/index.tsx b/src/routes/index.tsx index e96b3ec..f4542f1 100644 --- a/src/routes/index.tsx +++ b/src/routes/index.tsx @@ -348,38 +348,6 @@ function Dashboard() { - {/* Recent payments */} -
- - - - - Recent payments - - - - - {recentPayments.length === 0 &&

No payment requests yet.

} - {recentPayments.map((p) => ( - -
-
{p.recipient_name}
-
- {p.description || "Payment request"} ยท {formatDate(p.paid_at || p.created_at)} -
-
-
- {formatCurrency((p.total_amount_cents ?? 0) / 100)} - {p.status} -
- - ))} -
-
-
); }