Merge pull request #2302 from oxen-io/clearnet

fix: password input errors in seeddialog
pull/2465/head
Audric Ackermann 3 years ago committed by GitHub
commit c6689c70f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,7 +26,7 @@ const Password = (props: PasswordProps) => {
const onClose = () => dispatch(recoveryPhraseModal(null));
const confirmPassword = () => {
const passwordValue = (document.getElementById('seed-input-password') as any)?.val();
const passwordValue = (document.getElementById('seed-input-password') as any)?.value;
const isPasswordValid = matchesHash(passwordValue as string, passwordHash);
if (!passwordValue) {

Loading…
Cancel
Save