Skip to content

Commit

Permalink
fix(interest): min fiat amount
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeoB committed Jun 10, 2020
1 parent 40ba20d commit 65aaafe
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -278,7 +278,10 @@ const DepositForm: React.FC<InjectedFormProps<{}, Props> & Props> = props => {
values={{
minFiat: displayCoin
? depositLimits.minCoin
: maxDepositFiat
: fiatToString({
value: depositLimits.minFiat,
unit: walletCurrency
})
}}
/>
)}
Expand Down

0 comments on commit 65aaafe

Please sign in to comment.