I try to redirect to home after successfully login.
I make a function handleSubmit which is executed by the onClick of the "Login" Button:
const handleSubmit = async (e) => {
e.preventDefault();
e.target.email.value = "";
e.target.password.value = "";
setstatFormData("");
try {
await dispatch(authActions.login(formData));
console.log("authActions in handleSubmit:", isAuthenticated);
if (isAuthenticated === true) {
console.log("thanh cong...");
history.push("/");
} else {
return console.log("login fail...");
}
} catch (error) {
throw error("server error");
}
};