Browse Source
Merge pull request #802 from mrfelton/fix/console-error-on-request-form
fix(wallet): fix console error in request form
renovate/lint-staged-8.x
JimmyMow
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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> |
|
|
|