We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 228bf67 commit 963b4ddCopy full SHA for 963b4dd
backend/typescript/services/implementations/reviewDashboardService.ts
@@ -42,7 +42,7 @@ function toSidePanelDTO(model: ApplicantRecord): ReviewDashboardSidePanelDTO {
42
resumeUrl: model.applicant!.resumeUrl,
43
applicationStatus: model.status,
44
skillCategory: model.skillCategory,
45
- reviewDetails: reviewDetails,
+ reviewDetails,
46
};
47
}
48
@@ -103,7 +103,7 @@ class ReviewDashboardService implements IReviewDashboardService {
103
try {
104
const applicantRecord: ApplicantRecord | null =
105
await ApplicantRecord.findOne({
106
- where: { applicantId: applicantId },
+ where: { applicantId },
107
attributes: { exclude: ["createdAt", "updatedAt"] },
108
include: [
109
{
0 commit comments