diff --git a/src/components/AuthPages/Login/index.jsx b/src/components/AuthPages/Login/index.jsx index 8e03bdd..3ca1445 100644 --- a/src/components/AuthPages/Login/index.jsx +++ b/src/components/AuthPages/Login/index.jsx @@ -6,6 +6,7 @@ import googleLogo from "../../../assets/images/google-logo.svg"; import titleShape from "../../../assets/images/shape/login_straight_underline.svg"; import InputCom from "../../Helpers/Inputs/InputCom"; import AuthLayout from "../AuthLayout"; +import usersService from "../../../services/UsersService"; export default function Login() { const [checked, setValue] = useState(false); @@ -19,7 +20,7 @@ export default function Login() { }; // email - const [email, setMail] = useState("support@chiefsoft.com"); + const [email, setMail] = useState("support@mermsemr.com"); const handleEmail = (e) => { setMail(e.target.value); }; @@ -31,7 +32,7 @@ export default function Login() { const navigate = useNavigate(); const doLogin = () => { if (email !== "" && password !== "") { - if (email === "support@chiefsoft.com") { + if (email === "support@mermsemr.com") { localStorage.setItem("email", `${email}`); setLoginLoading(true); setTimeout(() => { @@ -66,7 +67,7 @@ export default function Login() {