Skip to content

Commit

Permalink
Fix remaining coflcoins after purchase not showing for exact price
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-luger committed Oct 2, 2024
1 parent 7a345bb commit c6fffdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Premium/BuyPremium/BuyPremium.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function BuyPremium(props: Props) {
<Number number={getPurchasePrice()} /> Coins
</span>
</div>
{coflCoins > getPurchasePrice() ? (
{coflCoins >= getPurchasePrice() ? (
<div>
<label className={styles.label}>Remaining after Purchase:</label>
<span>
Expand Down

0 comments on commit c6fffdb

Please sign in to comment.