Skip to content

Commit

Permalink
Chore: Replace test data from Campaign Stats (#7574)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjohnson authored Oct 17, 2024
1 parent 834138e commit 3618252
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ const CampaignStats = () => {
<DateRangeFilters selected={dayRange} options={filterOptions} onSelect={onDayRangeChange} />

<Row>
<StatWidget label={__('Amount Raised')} values={[5000, 3000]} description={widgetDescription} formatter={currency} />
<StatWidget label={__('Donation Count')} values={[200, 300]} description={widgetDescription} />
<StatWidget label={__('Donor Count')} values={[100, 100]} description={widgetDescription} />
<StatWidget label={__('Amount Raised')} values={pluck(stats, 'amountRaised')} description={widgetDescription} formatter={currency} />
<StatWidget label={__('Donation Count')} values={pluck(stats, 'donationCount')} description={widgetDescription} />
<StatWidget label={__('Donor Count')} values={pluck(stats, 'donorCount')} description={widgetDescription} />
</Row>

<Row>
Expand Down

0 comments on commit 3618252

Please sign in to comment.