Skip to content

Commit

Permalink
fix donors text
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlanglen committed Mar 27, 2024
1 parent b53ce91 commit 2fcd88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/potlock/widget/Project/DonationsInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ return (
<div className="donations-info">
<div className="amount">{nearToUsdWithFallback(totalDonationAmountNear)}</div>
<div className="donors">
Raised from <span> {uniqueDonors}</span> donor{uniqueDonors === 1 ? "" : "s"}
Raised from <span> {uniqueDonors}</span> {uniqueDonors === 1 ? "donor" : "donors"}
</div>
</div>
<div className="btn-wrapper">
Expand Down

0 comments on commit 2fcd88a

Please sign in to comment.