diff --git a/app/components/elements/ChangePassword.jsx b/app/components/elements/ChangePassword.jsx index 7b6748d757..a95732c68b 100644 --- a/app/components/elements/ChangePassword.jsx +++ b/app/components/elements/ChangePassword.jsx @@ -202,7 +202,6 @@ import {PublicKey} from 'shared/ecc' let newWif = null const keyValidate = (values) => ({ password: ! values.password ? 'Required' : - values.password.length < 16 ? 'Password must be 16 characters or more' : PublicKey.fromString(values.password) ? 'You need a private password or key (not a public key)' : null, confirmPassword: ! values.confirmPassword ? 'Required' :