Remove the cause for the login error

This commit was merged in pull request #355.
This commit is contained in:
2023-07-25 12:12:49 +01:00
parent 9718cfc574
commit 05022c29b2
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>