Skip to content

Commit

Permalink
feat: add conversions to key metrics, if they exist (#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanKrieger authored Jul 21, 2023
1 parent e37d7df commit c944aa4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/user/analytics/analyticsOverview/components/LiveFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ export default function LiveFeed({ overview, processed }: LiveFeedProps) {
},
];

if (processed.conversions > 0) {
feedValues.push({
label: "Conversions",
value: `${processed.conversions}`,
});
}

return (
<Box
flexDirection="row"
Expand Down

0 comments on commit c944aa4

Please sign in to comment.