Browse Source

fix(wallet): fix console error in request form

Ensure that the FormattedNumber component gets passed a valid number.
If we don't have a value, the the value to 0.
renovate/lint-staged-8.x
Tom Kirkpatrick 6 years ago
parent
commit
085f81d346
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 2
      app/components/Form/Request/Request.js

2
app/components/Form/Request/Request.js

@ -86,7 +86,7 @@ const Request = ({
<FormattedNumber
currency={ticker.fiatTicker}
style="currency"
value={requestFiatAmount}
value={requestFiatAmount || 0}
/>
</div>
</section>

Loading…
Cancel
Save