remove redundant check

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Shaheer Sarfaraz 2026-01-20 23:19:03 +00:00 committed by GitHub
parent dd03eed0fb
commit ba27eb07b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -321,8 +321,8 @@ export async function runPipeline(config: Partial<PipelineConfig> = {}): Promise
await jobsRepo.updateJob(job.id, {
suitabilityScore: score,
suitabilityReason: reason,
...(sponsorMatchScore !== undefined && { sponsorMatchScore }),
...(sponsorMatchNames !== undefined && { sponsorMatchNames }),
sponsorMatchScore,
sponsorMatchNames,
});
}