Skip to content

Commit

Permalink
ui changes for mobile responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhanshuGt committed Aug 23, 2024
1 parent a5e6dac commit 3c7cd79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useGetAllJobs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const useGetAllJobs = () => {
const fetchJobs = async () => {
try {
axios.defaults.withCredentials = true;
const res = await axios.get(`http://localhost:8000/api/v1/job/home?keyword=${searchText}`);
const res = await axios.get(`https://takeyouoff.onrender.com/api/v1/job/home?keyword=${searchText}`);

if (res.data.success) {
dispatch(setAllJobs(res.data.jobs));
Expand Down

0 comments on commit 3c7cd79

Please sign in to comment.