From ba27eb07b1edf44c3f440235183734c3bb7ef351 Mon Sep 17 00:00:00 2001 From: Shaheer Sarfaraz <53654735+DaKheera47@users.noreply.github.com> Date: Tue, 20 Jan 2026 23:19:03 +0000 Subject: [PATCH] remove redundant check Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- orchestrator/src/server/pipeline/orchestrator.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orchestrator/src/server/pipeline/orchestrator.ts b/orchestrator/src/server/pipeline/orchestrator.ts index 08166e9..bfd605a 100644 --- a/orchestrator/src/server/pipeline/orchestrator.ts +++ b/orchestrator/src/server/pipeline/orchestrator.ts @@ -321,8 +321,8 @@ export async function runPipeline(config: Partial = {}): Promise await jobsRepo.updateJob(job.id, { suitabilityScore: score, suitabilityReason: reason, - ...(sponsorMatchScore !== undefined && { sponsorMatchScore }), - ...(sponsorMatchNames !== undefined && { sponsorMatchNames }), + sponsorMatchScore, + sponsorMatchNames, }); }