-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove sync with extension from settings #2044
Conversation
e5ebb79
to
1934176
Compare
app/components/Views/Login/index.js
Outdated
@@ -400,7 +407,8 @@ class Login extends PureComponent { | |||
|
|||
const mapStateToProps = state => ({ | |||
passwordSet: state.user.passwordSet, | |||
selectedAddress: state.engine.backgroundState.PreferencesController.selectedAddress | |||
selectedAddress: state.engine.backgroundState.PreferencesController.selectedAddress, | |||
isDev: process.env?.NODE_ENV === DEVELOPMENT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this could be moved as constant outside the component?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👌
b250c93
to
f898aa8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cjeria @omnat Possible re-design on the removal of "Go Back"
cc @rickycodes
we handled this in #2042 |
@cjeria syncing with Ibrahim on this one. We are talking how this direction might still make sense and doesn't require re-design. Happy to sync on it. |
Here is a suggested design for restoring the wallet using seed phrase on the login screen that mirrors what the extension does today |
Here's another idea for removing the ability to restore from login and instead include direction for what do to if the user is locked out cc @omnat This copy could use refining. |
b92c934
to
c3278f2
Compare
1f8bde3
to
f42edf0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
QA Passed 👍🏽
* remove sync with extension from settings * Update attempting_sync_from_wallet_error * Update tests * Update translation * Update attempting_sync_from_wallet_error text
Description
Remove sync and update QR scan feedback as per bellow:
Checklist
Copy suggestion: “In order to Sync your MetaMask mobile wallet with your extension wallet, please re-install the app and choose the 'Import your extension wallet' option at onboarding.
Make sure your have your current wallet seed phrase safely backed up before uninstalling. Backup now (button that redirects to Settings > Security & Privacy)
UPDATE: This is going to be a different PR
Consider adding copy somewhere to let user know that if they want to create/import new wallet, they need to re-install the app.
Issue
Resolves #1950