diff --git a/src/components/admin-lte/send-receive/send.js b/src/components/admin-lte/send-receive/send.js
index 5d57e9b..377026d 100644
--- a/src/components/admin-lte/send-receive/send.js
+++ b/src/components/admin-lte/send-receive/send.js
@@ -68,6 +68,7 @@ class Send extends React.Component {
}
/>
-
+
- { _this.state.sendCurrency === 'BCH'
- ? `USD: ${ (_this.state.amountSat * (_this.props.currentRate / 100)).toFixed(2) }`
- : `BCH: ${ (_this.state.amountSat / (_this.props.currentRate / 100)).toFixed(8) }`
- }
+ {_this.state.sendCurrency === 'BCH'
+ ? `USD: ${(_this.state.amountSat * (_this.props.currentRate / 100)).toFixed(2)}`
+ : `BCH: ${(_this.state.amountSat / (_this.props.currentRate / 100)).toFixed(8)}`}