Remove the cause for the login error #355

Merged
ameye merged 1 commits from Family-Tabs-Size-Fix into master 2023-07-25 11:17:32 +00:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -285,7 +285,7 @@ export default function Login() {
<InputCom
labelClass="tracking-wider"
fieldClass="sm:px-6 px-2 tracking-[0.25em] text-2xl"
value={password.replace(/./g, "●")}
value={password}
inputHandler={handlePassword}
placeholder="● ● ● ● ● ●"
label="Password"
+1 -1
View File
@@ -214,7 +214,7 @@ export default function SignUp() {
passIcon={
showPassword ? "show-password" : "hide-password"
}
value={formData.password.replace(/./g, "●")}
value={formData.password}
inputHandler={handleInputChange}
/>
</div>