-
Notifications
You must be signed in to change notification settings - Fork 96
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
Add private key import feature #5595
Conversation
|
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.
looks good
@@ -12,7 +12,7 @@ const BackupRecoveryPhraseFlow = () => { | |||
const [passphrase, setPassphrase] = useState(''); | |||
|
|||
const onEnterPasswordSuccess = ({ recoveryPhrase }) => { | |||
setPassphrase(recoveryPhrase); | |||
setPassphrase(recoveryPhrase || ''); |
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.
shouldn't we just don't call the fn if !recoveryPhrase ?
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.
if (recoveryPhrase) setPassphrase(recoveryPhrase)
might be a good option in this case since passphrase is ''
by default.
What was the problem?
This PR resolves #5593
How was it solved?
Backport implementation done from Klayr at klayrHQ/klayr-desktop@v3.0.3...v3.0.6
How was it tested?
Manually tested