diff options
-rw-r--r-- | ui/app/components/account-export.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/account-export.js b/ui/app/components/account-export.js index 53a7f0fa1..32b103c86 100644 --- a/ui/app/components/account-export.js +++ b/ui/app/components/account-export.js @@ -114,10 +114,10 @@ ExportAccountView.prototype.render = function () { onClick: () => this.props.dispatch(actions.backToAccountDetail(this.props.address)), }, 'Done'), h('button', { - onClick: () => exportAsFile(`MetaMask ${nickname} Private Key`, plainKey), - stlye: { + style: { marginLeft: '10px', }, + onClick: () => exportAsFile(`MetaMask ${nickname} Private Key`, plainKey), }, 'Save as File'), ]) } |