1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00

Adjust copy in send token confirmation screen

This commit is contained in:
sdtsui 2017-07-29 23:11:11 -07:00
parent 9373ba9f38
commit 97cb25c9f1

View File

@ -371,7 +371,7 @@ PendingTx.prototype.render = function () {
// Accept Button
h('input.confirm.btn-green', {
type: 'submit',
value: 'SUBMIT',
value: 'CONFIRM',
style: {
marginTop: '8px',
width: '8em',
@ -393,7 +393,7 @@ PendingTx.prototype.render = function () {
width: '8em',
},
onClick: props.cancelTransaction,
}, 'Reject'),
}, 'CANCEL'),
]),
]) // end of minwidth wrapper
)