From 1e9ac74faf9413902ecedea460b8e7b5bea6a227 Mon Sep 17 00:00:00 2001 From: Cephas Chapa Date: Wed, 8 Jan 2025 11:49:41 +0200 Subject: [PATCH] fix: adds defaul input label for password input --- app/src/components/password-input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/password-input.tsx b/app/src/components/password-input.tsx index 1c1be635e..470b1a9ba 100644 --- a/app/src/components/password-input.tsx +++ b/app/src/components/password-input.tsx @@ -21,7 +21,7 @@ export default function PasswordInput({ error, register, t, - name = t("password"), + name = "Password", id = "password", w, shouldValidate = false,