Skip to content

Commit

Permalink
make password not show initially
Browse files Browse the repository at this point in the history
  • Loading branch information
KY233466 committed Nov 8, 2024
1 parent 9d4b3ca commit 0cfff2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import Image from "next/image"
import logo1 from "../../public/logo1.png"

export default function LoginForm() {
const [showPassword, setShowPassword] = useState(true);
const [showPassword, setShowPassword] = useState(false);
const [password, setPassword] = useState("");
const [email, setEmail] = useState("");
const [displayError, setDisplayError] = useState(false);
Expand Down

0 comments on commit 0cfff2a

Please sign in to comment.