Skip to content

Commit

Permalink
fix: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Paribesh01 committed Oct 24, 2024
1 parent fe6c426 commit 0f64511
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
18 changes: 0 additions & 18 deletions prisma/migrations/20241021191938_somfadf/migration.sql

This file was deleted.

6 changes: 6 additions & 0 deletions src/actions/job.action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ export const getAllJobs = withSession<
skills: true,
address: true,
workMode: true,
expired: true,
category: true,
minSalary: true,
maxSalary: true,
Expand Down Expand Up @@ -219,6 +220,7 @@ export const getRecommendedJobs = withServerActionAsyncCatcher<
maxSalary: true,
postedAt: true,
skills: true,
expired: true,
isVerifiedJob: true,
companyLogo: true,
},
Expand Down Expand Up @@ -252,6 +254,7 @@ export const getRecommendedJobs = withServerActionAsyncCatcher<
companyLogo: true,
minExperience: true,
maxExperience: true,
expired: true,
isVerifiedJob: true,
category: true,
},
Expand Down Expand Up @@ -294,6 +297,7 @@ export const getJobById = withServerActionAsyncCatcher<
minExperience: true,
maxExperience: true,
skills: true,
expired: true,
address: true,
workMode: true,
hasSalaryRange: true,
Expand Down Expand Up @@ -352,6 +356,7 @@ export const getRecentJobs = async () => {
minExperience: true,
maxExperience: true,
skills: true,
expired: true,
postedAt: true,
companyLogo: true,
type: true,
Expand Down Expand Up @@ -601,6 +606,7 @@ export async function GetBookmarkByUserId() {
minSalary: true,
maxSalary: true,
postedAt: true,
expired: true,
companyLogo: true,
},
},
Expand Down

0 comments on commit 0f64511

Please sign in to comment.