diff --git a/app/App.jsx b/app/App.jsx index 3776b0aafa..e213a8b0ca 100644 --- a/app/App.jsx +++ b/app/App.jsx @@ -400,10 +400,6 @@ class App extends React.Component { exact component={AccountDepositWithdraw} /> - diff --git a/app/components/Login/Login.jsx b/app/components/Login/Login.jsx index cca2b319e4..8770590de3 100644 --- a/app/components/Login/Login.jsx +++ b/app/components/Login/Login.jsx @@ -9,7 +9,7 @@ export default class Login extends React.Component { constructor() { super(); this.state = { - activeWalletModel: true + activeWalletModel: false }; } diff --git a/app/components/LoginSelector.jsx b/app/components/LoginSelector.jsx index 726ffa2838..0d3b79081a 100644 --- a/app/components/LoginSelector.jsx +++ b/app/components/LoginSelector.jsx @@ -70,10 +70,6 @@ class LoginSelector extends React.Component { this.unmounted = true; } - onSelect(route) { - this.props.history.push("/create-account/" + route); - } - handleLanguageSelect(locale) { IntlActions.switchLocale(locale); this.setState({ @@ -163,7 +159,7 @@ class LoginSelector extends React.Component {
- { - SettingsActions.changeSetting.defer({ - setting: "passwordLogin", - value: true - }); - WalletUnlockActions.unlock().catch( - () => {} - ); - }} + data-intro={translator.translate( + "walkthrough.create_cloud_wallet" + )} > - +
@@ -205,29 +197,18 @@ class LoginSelector extends React.Component { }, { type: "link", - value: "/create-account/wallet", + value: "/create-wallet-brainkey", translation: - "account.optional.restore_form", + "account.optional.restore_link_brain", dataIntro: translator.translate( "walkthrough.create_local_wallet" ), - arg: "restore_form" + arg: "restore_link_brain" } ]} />
- - - diff --git a/app/components/Wallet/WalletUnlockModal.jsx b/app/components/Wallet/WalletUnlockModal.jsx index 36e3db89a5..2a3a4c6acb 100644 --- a/app/components/Wallet/WalletUnlockModal.jsx +++ b/app/components/Wallet/WalletUnlockModal.jsx @@ -308,7 +308,7 @@ class WalletUnlockModal extends React.Component { this.props.history.push(path); }; - handleCreateWallet = () => this.closeRedirect("/create-account/wallet"); + handleCreateWallet = () => this.closeRedirect("/registration/local"); handleRestoreOther = () => this.closeRedirect("/settings/restore");