From 3e3df60bf275b5ce97174f00bfa77ed6c711c5c2 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Thu, 29 Jan 2026 13:18:09 +0100 Subject: [PATCH] Ignore Buy Box warnings with 'Fixed' status --- services/dataProcessor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/dataProcessor.ts b/services/dataProcessor.ts index a9b7ab2..5580fd0 100644 --- a/services/dataProcessor.ts +++ b/services/dataProcessor.ts @@ -1975,8 +1975,8 @@ export const processBuyBoxExcel = async (fileOrBuffer: File | ArrayBuffer): Prom const rawReason = String(row[config.reasonCol] || '').trim(); // Only consider as BB lost if there is an Issue Type / Reason specified - // Empty reason means no issue = they have the Buy Box - if (!rawReason) continue; + // Empty reason or "Fixed" status means no issue = they have the Buy Box + if (!rawReason || rawReason.toLowerCase() === 'fixed') continue; const reason = rawReason;