Skip to content

Commit 963b4dd

Browse files
committed
linting fix
1 parent 228bf67 commit 963b4dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/typescript/services/implementations/reviewDashboardService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function toSidePanelDTO(model: ApplicantRecord): ReviewDashboardSidePanelDTO {
4242
resumeUrl: model.applicant!.resumeUrl,
4343
applicationStatus: model.status,
4444
skillCategory: model.skillCategory,
45-
reviewDetails: reviewDetails,
45+
reviewDetails,
4646
};
4747
}
4848

@@ -103,7 +103,7 @@ class ReviewDashboardService implements IReviewDashboardService {
103103
try {
104104
const applicantRecord: ApplicantRecord | null =
105105
await ApplicantRecord.findOne({
106-
where: { applicantId: applicantId },
106+
where: { applicantId },
107107
attributes: { exclude: ["createdAt", "updatedAt"] },
108108
include: [
109109
{

0 commit comments

Comments
 (0)