From 2800719bfc95bbfeaab88a4f80acd9d1a2af7abc Mon Sep 17 00:00:00 2001 From: yqrashawn Date: Mon, 8 Jan 2024 10:45:48 +0800 Subject: [PATCH] fix: min pwd length for ::multiaccounts.db/password https://github.com/status-im/status-go/compare/debfe1ca...debfe1ca it's used in status-im.common.standard-authentication.enter-password to decide if confirm button should be disabled fix #18393 Signed-off-by: yqrashawn --- src/status_im/constants.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/constants.cljs b/src/status_im/constants.cljs index 881c554d8b..d52d10a4aa 100644 --- a/src/status_im/constants.cljs +++ b/src/status_im/constants.cljs @@ -117,7 +117,7 @@ (def ^:const profile-pictures-visibility-everyone 2) (def ^:const profile-pictures-visibility-none 3) -(def ^:const min-password-length 6) +(def ^:const min-password-length 10) (def ^:const max-group-chat-participants 20) (def ^:const default-number-of-messages 20) (def ^:const default-number-of-pin-messages 3)