From 77546a50175d033aab171df9ed8bf67ad33ed0fe Mon Sep 17 00:00:00 2001
From: Aleksandar
Date: Thu, 11 Dec 2025 13:34:40 +0100
Subject: [PATCH] fix: remove duplicate code in StatsCard
---
apps/admin/src/components/ui/StatsCard.tsx | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/apps/admin/src/components/ui/StatsCard.tsx b/apps/admin/src/components/ui/StatsCard.tsx
index a277723..690130f 100644
--- a/apps/admin/src/components/ui/StatsCard.tsx
+++ b/apps/admin/src/components/ui/StatsCard.tsx
@@ -77,12 +77,7 @@ export function StatsCard({ title, value, change, trend, icon: Icon, color = "bl
);
- {trend === "up" ? "↑" : trend === "down" ? "↓" : "→"} {change}
-
-
- vs last month
-
- )}
+}
);