diff options
Diffstat (limited to 'ui/app/config.js')
-rw-r--r-- | ui/app/config.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ui/app/config.js b/ui/app/config.js index d4730e558..e09a38cd8 100644 --- a/ui/app/config.js +++ b/ui/app/config.js @@ -77,6 +77,22 @@ ConfigScreen.prototype.render = function () { currentConversionInformation(metamaskState, state), h('hr.horizontal-line'), + h('div', { + style: { + marginTop: '20px', + }, + }, [ + h('button', { + style: { + alignSelf: 'center', + }, + onClick (event) { + event.preventDefault() + state.dispatch(actions.revealSeedConfirmation()) + }, + }, 'Reveal Seed Words'), + ]), + ]), ]), ]) |