From 51279b82f6ab56cfc5d4b611bc3157ce5e765257 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Fri, 23 Feb 2024 03:40:06 +0500 Subject: [PATCH] mobile: remove pass min limit on vault --- apps/mobile/app/components/dialogs/vault/index.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/apps/mobile/app/components/dialogs/vault/index.js b/apps/mobile/app/components/dialogs/vault/index.js index a7f4b61c5..fedbf1b5d 100644 --- a/apps/mobile/app/components/dialogs/vault/index.js +++ b/apps/mobile/app/components/dialogs/vault/index.js @@ -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) {