refactor: split wallet onboarding panels

This commit is contained in:
2026-08-22 16:56:49 +02:00
parent 3c2a2cc4a5
commit 578613c869
6 changed files with 509 additions and 546 deletions
+4
View File
@@ -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);