Skip to content

Commit

Permalink
Merge pull request #4654 from Giveth/fix/donation_amount_display
Browse files Browse the repository at this point in the history
fix/recurring donation amount display
  • Loading branch information
kkatusic authored Sep 10, 2024
2 parents adb612b + 1fc1d99 commit 9020bb9
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,13 @@ const RecurringDonationTable: FC<RecurringDonationTable> = ({
) : (
<DonationTableCell>
<B color={semanticColors.jade[500]}>
{limitFraction(
formatUnits(
BigInt(donation.flowRate) *
ONE_MONTH_SECONDS,
18,
{formatDonation(
limitFraction(
formatUnits(
BigInt(donation.flowRate) *
ONE_MONTH_SECONDS,
18,
),
),
)}
</B>
Expand Down

0 comments on commit 9020bb9

Please sign in to comment.