updated endpoint

This commit is contained in:
Ebube
2023-05-25 10:06:56 +01:00
parent 4f0d079bfe
commit c46e94cd88
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import { Link } from "react-router-dom";
export default function LoginLayout({ slogan, children }) {
return (
<div className={`layout-wrapper login`}>
<div className={`main-wrapper login-wrapper w-full h-screen overflow-y-auto sm:p-20 p-10`}>
<div className={`main-wrapper login-wrapper w-full h-screen overflow-y-auto p-2 sm:p-20`}>
<div className="w-full h-full">
<div className="flex-1 flex justify-center items-center">
{children && children}
+2 -2
View File
@@ -187,7 +187,7 @@ export default function Login() {
<div className="input-item mb-5">
<InputCom
labelClass="tracking-wider"
fieldClass="px-6"
fieldClass="sm:px-6 px-2"
value={email}
inputHandler={handleEmail}
placeholder="support@mermsemr.com"
@@ -201,7 +201,7 @@ export default function Login() {
<div className="input-item mb-5">
<InputCom
labelClass="tracking-wider"
fieldClass="px-6"
fieldClass="sm:px-6 px-2"
value={password}
inputHandler={handlePassword}
placeholder="● ● ● ● ● ●"
+1 -1
View File
@@ -77,7 +77,7 @@ const AuthRoute = ({ redirectPath = "/login", children }) => {
// Getting market data
const getMarketActiveJobList = async () => {
try {
const res = await apiCall.getActiveJobList();
const res = await apiCall.getMyJobList();
dispatch(updateJobs(res.data));
} catch (error) {
console.log("Error getting mode");