Intento redirigir a casa después de iniciar sesión correctamente. Hago una función handleSubmit que se ejecuta al hacer onClick en el botón "Iniciar sesión":
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"); } };