Move beta warning to app header.

feature/default_network_editable
Dan 7 years ago
parent 07edf3f9ff
commit def369ba07
  1. 1
      mascara/src/app/first-time/create-password-screen.js
  2. 6
      ui/app/app.js

@ -59,7 +59,6 @@ class CreatePasswordScreen extends Component {
? <LoadingScreen loadingMessage="Creating your new account" />
: (
<div>
<h2 className="alpha-warning">Please be aware that this version is still in under development.</h2>
<div className="first-view-main">
<div className="mascara-info">
<Mascot

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

Loading…
Cancel
Save