1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00

Fix typo.

This commit is contained in:
Kevin Serrano 2017-09-11 16:52:35 -07:00
parent 1a0c465dc9
commit 213af0cd6c
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1

View File

@ -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'),
])
}