aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send')
-rw-r--r--ui/app/components/send/account-list-item.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/send/account-list-item.js b/ui/app/components/send/account-list-item.js
index 0938f4cad..ba7eec940 100644
--- a/ui/app/components/send/account-list-item.js
+++ b/ui/app/components/send/account-list-item.js
@@ -11,7 +11,7 @@ function AccountListItem () {
Component.call(this)
}
-function mapStateToProps(state) {
+function mapStateToProps (state) {
return {
conversionRate: conversionRateSelector(state),
currentCurrency: getCurrentCurrency(state),
@@ -22,14 +22,14 @@ module.exports = connect(mapStateToProps)(AccountListItem)
AccountListItem.prototype.render = function () {
const {
- account,
- handleClick,
+ account,
+ handleClick,
icon = null,
conversionRate,
currentCurrency,
} = this.props
- const { name, address, balance } = account
+ const { name, address, balance } = account || {}
return h('div.account-list-item', {
onClick: () => handleClick({ name, address, balance }),