Skip to content

Commit

Permalink
Fix currency symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
IanPhilips committed Feb 26, 2025
1 parent 2ac0d45 commit 82e8382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/components/contract/add-boost-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { BOOST_COST_CASH, BOOST_COST_MANA } from 'common/economy'
import dayjs from 'dayjs'
import { Input } from '../widgets/input'
import { HOUR_MS } from 'common/util/time'
import { formatMoney } from 'common/util/format'
import { formatMoney, formatMoneyUSD } from 'common/util/format'

export function AddBoostButton(props: {
contract: Contract
Expand Down Expand Up @@ -148,7 +148,7 @@ function BoostPurchaseModal(props: {
className="flex-1"
disabled={!!loading}
>
Pay {formatMoney(BOOST_COST_CASH)}
Pay {formatMoneyUSD(BOOST_COST_CASH)}
</Button>
</Row>
{notEnoughFunds && (
Expand Down

0 comments on commit 82e8382

Please sign in to comment.