diff --git a/src/components/MyPendingJobs/ParentWaitingTable.jsx b/src/components/MyPendingJobs/ParentWaitingTable.jsx index e5d20a8..3a17d75 100644 --- a/src/components/MyPendingJobs/ParentWaitingTable.jsx +++ b/src/components/MyPendingJobs/ParentWaitingTable.jsx @@ -10,27 +10,27 @@ import usersService from "../../services/UsersService"; export default function ParentWaitingTable() { - const transationFilterData = [ - { - id: 1, - name: "all", - uniqueId: Math.random(), - }, - { - id: 2, - name: "send", - uniqueId: Math.random(), - }, - { - id: 3, - name: "recent", - uniqueId: Math.random(), - }, - ]; - const [filterActive, setValue] = useState(transationFilterData[0].id); - const filterHander = (value) => { - setValue(value); - }; + // const transationFilterData = [ + // { + // id: 1, + // name: "all", + // uniqueId: Math.random(), + // }, + // { + // id: 2, + // name: "send", + // uniqueId: Math.random(), + // }, + // { + // id: 3, + // name: "recent", + // uniqueId: Math.random(), + // }, + // ]; + // const [filterActive, setValue] = useState(transationFilterData[0].id); + // const filterHander = (value) => { + // setValue(value); + // }; const apiCall = new usersService() @@ -93,7 +93,7 @@ export default function ParentWaitingTable() {
-

+

{item.title}

@@ -102,12 +102,12 @@ export default function ParentWaitingTable() {

-
-

+

+

{new Date(item.added).toLocaleString().split(',')[0]} - {/* {item.added} */} +

- {/*

*/} +

Status: {item.status}

diff --git a/src/components/MyTasks/MyJobTable.jsx b/src/components/MyTasks/MyJobTable.jsx index c91b5b9..c6f8389 100644 --- a/src/components/MyTasks/MyJobTable.jsx +++ b/src/components/MyTasks/MyJobTable.jsx @@ -145,7 +145,7 @@ export default function MyJobTable({ className, ActiveJobList, Account }) { >
You currently have {accountType ? '"0"' : "no"} task diff --git a/src/components/MyTasks/index.jsx b/src/components/MyTasks/index.jsx index a6b6940..fad3f5f 100644 --- a/src/components/MyTasks/index.jsx +++ b/src/components/MyTasks/index.jsx @@ -26,7 +26,10 @@ export default function MyTasks({ return ( - + {userDetails?.account_type == 'FULL' && + + } +
{/* heading */} diff --git a/tailwind.config.js b/tailwind.config.js index 2a6af0f..7937794 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -17,7 +17,7 @@ module.exports = { "white-opacity": "#7B7EFC", "dark-white":"#1D1F2F", "dark-light-purple":"#5356fb29", - 'sky-blue': '#009ef7' + 'sky-blue': '#3a8fc3' }, }, },