diff --git a/react/src/components/dashboard/sendCoin.js b/react/src/components/dashboard/sendCoin.js index 097e88d..259a019 100644 --- a/react/src/components/dashboard/sendCoin.js +++ b/react/src/components/dashboard/sendCoin.js @@ -554,12 +554,21 @@ class SendCoin extends React.Component { renderSendCoinResponse() { if (this.props.ActiveCoin.lastSendToResponse) { - return Object.keys(this.props.ActiveCoin.lastSendToResponse).map((key, index) => - - {key} - {this.renderKey(key)} - - ); + let items = []; + const _response = this.props.ActiveCoin.lastSendToResponse; + + for (let key in _response) { + if (key !== 'tag') { + items.push( + + {key} + {this.renderKey(key)} + + ); + } + } + + return items; } else { return (