diff --git a/app/(admin)/admin/dashboard/page.tsx b/app/(admin)/admin/dashboard/page.tsx index d782ac2..6b9e7ca 100644 --- a/app/(admin)/admin/dashboard/page.tsx +++ b/app/(admin)/admin/dashboard/page.tsx @@ -206,20 +206,6 @@ export default function Dashboard() { trend: stats?.trends.cancelled_bookings ?? "0%", trendUp: false, }, - { - title: "Total Revenue", - value: `$${stats?.total_revenue.toLocaleString() ?? 0}`, - icon: DollarSign, - trend: stats?.trends.total_revenue ?? "0%", - trendUp: true, - }, - { - title: "Monthly Revenue", - value: `$${stats?.monthly_revenue.toLocaleString() ?? 0}`, - icon: TrendingUp, - trend: stats?.trends.monthly_revenue ?? "0%", - trendUp: true, - }, ]; @@ -275,7 +261,7 @@ export default function Dashboard() { ) : ( <> {/* Stats Grid */} -
{card.value}
-- vs last month -
+ {card.showTrend !== false && ( ++ vs last month +
+ )}