Skip to content

Commit

Permalink
fix withdrawal fee display
Browse files Browse the repository at this point in the history
  • Loading branch information
mantikoros committed Sep 30, 2024
1 parent aeb667c commit 4902bc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/components/cashout/select-cashout-options.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import clsx from 'clsx'
import { MIN_CASHOUT_AMOUNT } from 'common/economy'
import { MIN_CASHOUT_AMOUNT, SWEEPIES_CASHOUT_FEE } from 'common/economy'
import {
CASH_TO_MANA_CONVERSION_RATE,
CHARITY_FEE,
Expand Down Expand Up @@ -397,7 +397,7 @@ const DollarDescription = (props: { disabled?: boolean }) => (
,
</span>
<span>
minus a <b>{CHARITY_FEE * 100}% fee</b>.
minus a {SWEEPIES_CASHOUT_FEE * 100}% fee.
</span>
</div>
</Col>
Expand Down

0 comments on commit 4902bc2

Please sign in to comment.