Ignore Buy Box warnings with 'Fixed' status

This commit is contained in:
Christian Vidal Wolf
2026-01-29 13:18:09 +01:00
parent 3f50883bd2
commit 3e3df60bf2
+2 -2
View File
@@ -1975,8 +1975,8 @@ export const processBuyBoxExcel = async (fileOrBuffer: File | ArrayBuffer): Prom
const rawReason = String(row[config.reasonCol] || '').trim(); const rawReason = String(row[config.reasonCol] || '').trim();
// Only consider as BB lost if there is an Issue Type / Reason specified // Only consider as BB lost if there is an Issue Type / Reason specified
// Empty reason means no issue = they have the Buy Box // Empty reason or "Fixed" status means no issue = they have the Buy Box
if (!rawReason) continue; if (!rawReason || rawReason.toLowerCase() === 'fixed') continue;
const reason = rawReason; const reason = rawReason;