diff --git a/src/components/admin-lte/send-receive/send.js b/src/components/admin-lte/send-receive/send.js
index 3e2d5a7..f62639a 100644
--- a/src/components/admin-lte/send-receive/send.js
+++ b/src/components/admin-lte/send-receive/send.js
@@ -84,8 +84,14 @@ 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)}`}
+ ? `USD: ${(
+ _this.state.amountSat *
+ (_this.props.currentRate / 100)
+ ).toFixed(2)}`
+ : `BCH: ${(
+ _this.state.amountSat /
+ (_this.props.currentRate / 100)
+ ).toFixed(8)}`}