Skip to content

Commit

Permalink
Centrifuge App: Fix Tinlake collect currency symbol (#1523)
Browse files Browse the repository at this point in the history
  • Loading branch information
onnovisser authored Aug 8, 2023
1 parent 2d6556e commit f20576f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions centrifuge-app/src/components/InvestRedeem/InvestRedeem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ function InvestForm({ onCancel, hasInvestment, autoFocus, investLabel = 'Invest'
Collect{' '}
{formatBalance(
state.collectAmount,
state.collectType === 'invest' ? state.trancheCurrency?.symbol : state.nativeCurrency?.symbol,
state.collectType === 'invest' ? state.trancheCurrency?.symbol : state.poolCurrency?.symbol,
2,
0
)}
Expand Down Expand Up @@ -692,7 +692,7 @@ function RedeemForm({ onCancel, autoFocus }: RedeemFormProps) {
Collect{' '}
{formatBalance(
state.collectAmount,
state.collectType === 'invest' ? state.trancheCurrency?.symbol : state.nativeCurrency?.symbol,
state.collectType === 'invest' ? state.trancheCurrency?.symbol : state.poolCurrency?.symbol,
2,
0
)}
Expand Down

0 comments on commit f20576f

Please sign in to comment.