mirror of
https://github.com/tompro/sattle.git
synced 2026-08-27 07:15:59 +00:00
refactor: split wallet onboarding panels
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
export const MIN_PASSWORD_LENGTH = 8;
|
||||
|
||||
export const passwordValid = (password: string, confirmation: string): boolean =>
|
||||
password === '' || (password.length >= MIN_PASSWORD_LENGTH && password === confirmation);
|
||||
Reference in New Issue
Block a user