Skip to content

Commit

Permalink
clients/apps/web: show cumulative revenue on dashboard widget
Browse files Browse the repository at this point in the history
Fix #4591
  • Loading branch information
frankie567 committed Jan 23, 2025
1 parent 704e66a commit 9d08ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/apps/web/src/components/Widgets/RevenueWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const RevenueWidget = ({ className }: RevenueWidgetProps) => {
{getCentsInDollarString(
revenueMetrics.data?.periods[
revenueMetrics.data?.periods.length - 1
].revenue ?? 0,
].cumulative_revenue ?? 0,
false,
)}
</h2>
Expand Down

0 comments on commit 9d08ffa

Please sign in to comment.