From ce9942b3d307616278c64879012428ad29d1336b Mon Sep 17 00:00:00 2001 From: emmanuel iheanacho Date: Mon, 27 Jul 2026 08:00:53 +0100 Subject: [PATCH] fix: RecentActivity uses the wrong icons for each metric --- src/components/RecentActivity.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/RecentActivity.tsx b/src/components/RecentActivity.tsx index 607660e..81597bc 100644 --- a/src/components/RecentActivity.tsx +++ b/src/components/RecentActivity.tsx @@ -98,29 +98,29 @@ export const RecentActivity = ({ activities }: Props) => {
{/* Row 1: Group Size */}
- call +
{activity.groupSize} - 🏆 + {activity.coins.gold}
{/* Row 2: Participants */}
- audience +
{activity.participants} - 🏆 + {activity.coins.gold}
{/* Row 3: Coins & Earnings */}
- 50:50 +
{activity.earnings} - 🏆 + {activity.coins.red}
@@ -129,4 +129,4 @@ export const RecentActivity = ({ activities }: Props) => { ); -}; +}; \ No newline at end of file