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
co-authored by Copilot
parent dd03eed0fb
commit ba27eb07b1
@@ -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,
});
}