diff options
Fix tx approval address formatting
Diffstat (limited to 'ui/app/components/account-panel.js')
-rw-r--r-- | ui/app/components/account-panel.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/components/account-panel.js b/ui/app/components/account-panel.js index f0e71bd31..5583d06ae 100644 --- a/ui/app/components/account-panel.js +++ b/ui/app/components/account-panel.js @@ -4,6 +4,7 @@ const Component = require('react').Component const h = require('react-hyperscript') const formatBalance = require('../util').formatBalance const Identicon = require('./identicon') +const addressSummary = require('../util').addressSummary const Panel = require('./panel') @@ -36,7 +37,7 @@ AccountPanel.prototype.render = function() { attributes: [ { key: 'ADDRESS', - value: identity.address, + value: addressSummary(identity.address), }, balanceOrFaucetingIndication(account, isFauceting), ] |