diff options
Move beta warning to app header.
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/app.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/app/app.js b/ui/app/app.js index 58e38a077..7490c63b1 100644 --- a/ui/app/app.js +++ b/ui/app/app.js @@ -239,6 +239,9 @@ App.prototype.renderAppBar = function () { showNetworkDropdown, hideNetworkDropdown, currentView, + isInitialized, + betaUI, + isPopup, } = this.props if (window.METAMASK_UI_TYPE === 'notification') { @@ -317,6 +320,9 @@ App.prototype.renderAppBar = function () { ]), ]), + !isInitialized && !isPopup && betaUI && h('h2.alpha-warning', + 'Please be aware that this version is still under development'), + ]) ) } |