Added link to Family Market

This commit is contained in:
2023-06-30 13:28:44 +01:00
parent cca423a41c
commit e8ed10ddbf
2 changed files with 8 additions and 4 deletions
+6 -2
View File
@@ -3,14 +3,18 @@ import { Link } from "react-router-dom";
import Layout from "../Partials/Layout";
import MyJobTable from "./MyJobTable";
import CommonHead from "../UserHeader/CommonHead";
import TopSellerTopBuyerSliderSection from "../Home/TopSellerTopBuyerSliderSection";
import MyOffersTable from "./MyOffersTable";
import { useSelector } from "react-redux";
export default function MyTasks({
MyActiveOffersList,
ActiveJobList,
commonHeadData,
}) {
const { userDetails: account_type } = useSelector(
(state) => state?.userDetails
);
const [selectTab, setValue] = useState("today");
const filterHandler = (value) => {
setValue(value);
@@ -45,7 +49,7 @@ export default function MyTasks({
className="mb-10"
/>
)}
<MyJobTable ActiveJobList={ActiveJobList} />
<MyJobTable ActiveJobList={ActiveJobList} Account={account_type} />
</div>
</div>
</Layout>