diff --git a/services/cvService.ts b/services/cvService.ts index ce1bd6e..bdcf91d 100644 --- a/services/cvService.ts +++ b/services/cvService.ts @@ -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); diff --git a/services/recommendationService.ts b/services/recommendationService.ts index e5006e7..637509c 100644 --- a/services/recommendationService.ts +++ b/services/recommendationService.ts @@ -23,7 +23,6 @@ export const findRecommendationById = async (recommendationId: string) => { export const findRecommendationsByCvId = async (cvId: string): Promise => { try { - console.log("Fetching recommendations for CV ID:", cvId) const recommendations = await prisma.recommendation.findMany({ where: { cv_id: cvId } });