Skip to content

Commit

Permalink
modified job
Browse files Browse the repository at this point in the history
  • Loading branch information
iam-abin committed Mar 26, 2024
1 parent 7420588 commit 12bccd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/form/EditJob.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function EditJob() {
console.log("Hello");
if (data.data) {
notify("updated successfully", "success");
navigate("/recruiter/all-jobs");
navigate("/recruiter/recruiter-added-jobs");
} else {
notify("not updated", "error");
}
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/job-pages/recruiter/CreateJobPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function CreateJobPage() {
}
const response = await createJobApi(jobData);
notify(response.message, "success");
navigate("/recruiter/all-jobs");
navigate("/recruiter/recruiter-added-jobs");
} catch (error: any) {
console.log("fdsf",error);

Expand Down

0 comments on commit 12bccd1

Please sign in to comment.