mobile: remove pass min limit on vault

This commit is contained in:
Ammar Ahmed
2024-02-23 03:40:06 +05:00
parent 6dc91450da
commit 51279b82f6

View File

@@ -242,16 +242,6 @@ export class VaultDialog extends Component {
});
return;
}
if (this.password && this.password.length < 3) {
ToastManager.show({
heading: "Password too short",
message: "Password must be longer than 3 characters.",
type: "error",
context: "local"
});
return;
}
if (!this.state.novault) {
if (this.password !== this.confirmPassword) {