Skip to content

Commit

Permalink
Remove the default values
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Jun 17, 2022
1 parent a1f9bd1 commit 1161a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/auth/signIn/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ import { RiEyeCloseLine } from "react-icons/ri";
import { useAuth } from "../../../auth-context/auth.context";
import AuthApi from "../../../api/auth";
function SignIn() {
const [email, setEmail] = useState("test@appseed.us");
const [password, setPassword] = useState("pass");
const [email, setEmail] = useState(""); // <-- Default values HERE
const [password, setPassword] = useState(""); // <-- Default values HERE
const [error, setError] = useState(undefined);
const [buttonText, setButtonText] = useState("Sign in");
const history = useHistory();
Expand Down

0 comments on commit 1161a05

Please sign in to comment.