diff --git a/src/user/analytics/analyticsOverview/components/LiveFeed.tsx b/src/user/analytics/analyticsOverview/components/LiveFeed.tsx index a882e5d8..b83c5b77 100644 --- a/src/user/analytics/analyticsOverview/components/LiveFeed.tsx +++ b/src/user/analytics/analyticsOverview/components/LiveFeed.tsx @@ -51,10 +51,16 @@ export default function LiveFeed({ overview, processed }: LiveFeedProps) { ]; if (processed.conversions > 0) { - feedValues.push({ - label: "Conversions", - value: `${processed.conversions}`, - }); + feedValues.push( + { + label: "Conversions", + value: `${processed.conversions}`, + }, + { + label: "CPA", + value: `$${processed.cpa.toLocaleString()}`, + }, + ); } return (