Skip to content

Commit

Permalink
removed services logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Peco1503 committed Jun 11, 2024
1 parent b286eb8 commit fcc5ae7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion services/cvService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const findCVById = async (cvID: string) => {
const cv = await prisma.cv.findUnique({
where: { cv_id: cvID },
});
console.log(cv);
return cv;
} catch (error) {
console.error('Failed to fetch CV:', error);
Expand Down
1 change: 0 additions & 1 deletion services/recommendationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export const findRecommendationById = async (recommendationId: string) => {

export const findRecommendationsByCvId = async (cvId: string): Promise<recommendation[]> => {
try {
console.log("Fetching recommendations for CV ID:", cvId)
const recommendations = await prisma.recommendation.findMany({
where: { cv_id: cvId }
});
Expand Down

0 comments on commit fcc5ae7

Please sign in to comment.