Skip to content

Commit

Permalink
resolved conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishimwe7 committed Oct 8, 2024
1 parent ae48f11 commit ccad7df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 19 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
"browser": "^0.2.6",
"date-fns": "^2.29.3",
"dayjs": "^1.11.6",
"debounce": "^2.1.1",
"dotenv": "^16.0.3",
"express": "^4.21.0",
"flowbite": "^1.5.3",
Expand Down Expand Up @@ -122,8 +123,8 @@
"react-icons": "^4.6.0",
"react-js-pagination": "^3.0.3",
"react-loader-spinner": "^6.1.6",
"react-modal": "^3.16.1",
"react-loading-skeleton": "^3.5.0",
"react-modal": "^3.16.1",
"react-paginate": "^8.1.3",
"react-redux": "^8.0.4",
"react-render-html": "^0.6.0",
Expand Down
21 changes: 3 additions & 18 deletions src/pages/JobPost/job.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ import { deleteJobPostAction } from "../../redux/actions/deleteJobPostAction";
import { JobPostSkeleton } from "../../skeletons/jobPostSkeleton";
import { getAllFilteredJobPosts } from '../../redux/actions/filterJobPost'
import { getAllJobPosts } from '../../redux/actions/filterJobPost';
import { debounce } from 'lodash';


const Jobs = (props: any) => {
const [addNewTraineeModel, setAddNewTraineeModel] = useState(false);
Expand Down Expand Up @@ -351,23 +353,7 @@ const Jobs = (props: any) => {
</button>
</div>
<Link to="/admin/filter_job_post">
<button className="flex bg-primary dark:bg-[#56C870] rounded-md py-2 mt-2 px-4 text-white font-medium cursor-pointer">
<icons.AiOutlineSearch className="mt-1 mr-1 font-bold" />{" "}
Search
</button>
</Link>
<div className="flex items-left px-8">
<div className="flex py-2 pb-8 w-fit">
<button
onClick={Open}
className="flex bg-primary dark:bg-[#56C870] rounded-md py-2 px-4 text-white font-medium cursor-pointer"
>
<icons.AiOutlinePlus className="mt-1 mr-1 font-bold" /> Job
Post
</button>
</div>
<Link to="/admin/filter_job_post">
<button className="flex bg-primary dark:bg-[#56C870] rounded-md py-2 mt-2 px-4 text-white font-medium cursor-pointer">
<button className="flex bg-primary dark:bg-[#56C870] rounded-md py-2 mt-2 px-4 ml-4 text-white font-medium cursor-pointer">
<icons.AiOutlineSearch className="mt-1 mr-1 font-bold" />{" "}
Search
</button>
Expand Down Expand Up @@ -721,7 +707,6 @@ const Jobs = (props: any) => {
</div>
</div>
</div>
</div>
</>
);
};
Expand Down

0 comments on commit ccad7df

Please sign in to comment.