Skip to content

Commit

Permalink
Remove the development notice from UI onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
whymarrh committed Jul 28, 2018
1 parent f9871fe commit c3ce298
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions mascara/src/app/first-time/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import PropTypes from 'prop-types'
import {connect} from 'react-redux'
import { withRouter, Switch, Route } from 'react-router-dom'
import { compose } from 'recompose'
import classnames from 'classnames'

import CreatePasswordScreen from './create-password-screen'
import UniqueImageScreen from './unique-image-screen'
Expand Down Expand Up @@ -44,28 +43,9 @@ class FirstTimeFlow extends Component {
noActiveNotices: false,
};

renderAppBar () {
const { welcomeScreenSeen } = this.props

return (
<div className="alpha-warning__container">
<h2 className={classnames({
'alpha-warning': welcomeScreenSeen,
'alpha-warning-welcome-screen': !welcomeScreenSeen,
})}
>
Please be aware that this version is still under development
</h2>
</div>
)
}

render () {
const { isPopup } = this.props

return (
<div className="flex-column flex-grow">
{ !isPopup && this.renderAppBar() }
<div className="first-time-flow">
<Switch>
<Route exact path={INITIALIZE_IMPORT_ACCOUNT_ROUTE} component={ImportAccountScreen} />
Expand Down

0 comments on commit c3ce298

Please sign in to comment.