aboutsummaryrefslogtreecommitdiffstats
path: root/mascara
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-07-28 06:47:52 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-07-28 22:29:51 +0800
commitc3ce2984ef078d39b88a1fd8b007063d6c994c23 (patch)
tree4bff9e70c7d9a2f1568054c2609e9790030ef0b9 /mascara
parentf9871fe60b7c6300e746605948eb690b8e48aecc (diff)
downloadtangerine-wallet-browser-c3ce2984ef078d39b88a1fd8b007063d6c994c23.tar
tangerine-wallet-browser-c3ce2984ef078d39b88a1fd8b007063d6c994c23.tar.gz
tangerine-wallet-browser-c3ce2984ef078d39b88a1fd8b007063d6c994c23.tar.bz2
tangerine-wallet-browser-c3ce2984ef078d39b88a1fd8b007063d6c994c23.tar.lz
tangerine-wallet-browser-c3ce2984ef078d39b88a1fd8b007063d6c994c23.tar.xz
tangerine-wallet-browser-c3ce2984ef078d39b88a1fd8b007063d6c994c23.tar.zst
tangerine-wallet-browser-c3ce2984ef078d39b88a1fd8b007063d6c994c23.zip
Remove the development notice from UI onboarding
Diffstat (limited to 'mascara')
-rw-r--r--mascara/src/app/first-time/index.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/mascara/src/app/first-time/index.js b/mascara/src/app/first-time/index.js
index dc254bb19..6e4dc74bb 100644
--- a/mascara/src/app/first-time/index.js
+++ b/mascara/src/app/first-time/index.js
@@ -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'
@@ -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} />