Fix NaN Tipped
This commit is contained in:
parent
764e21c801
commit
20c610e8c9
1 changed files with 5 additions and 1 deletions
|
@ -85,7 +85,11 @@ class CreditAmount extends React.PureComponent<Props> {
|
||||||
if (showLBC && !isFiat) {
|
if (showLBC && !isFiat) {
|
||||||
amountText = <LbcSymbol postfix={amountText} size={size} />;
|
amountText = <LbcSymbol postfix={amountText} size={size} />;
|
||||||
} else if (showLBC && isFiat) {
|
} else if (showLBC && isFiat) {
|
||||||
amountText = <p style={{ display: 'inline' }}> ${(Math.round(Number(amountText) * 100) / 100).toFixed(2)}</p>;
|
amountText = (
|
||||||
|
<p style={{ display: 'inline' }}>
|
||||||
|
${isNaN(Number(amountText)) ? amountText : (Math.round(Number(amount) * 100) / 100).toFixed(2)}
|
||||||
|
</p>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fee) {
|
if (fee) {
|
||||||
|
|
Loading…
Reference in a new issue