From 3892b9f256204fdaa7057948057c0b9140e0423c Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Thu, 23 Apr 2026 19:20:43 +0200 Subject: [PATCH] debug: log processedRow[103] for 59272EN --- src/App.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index c38d48a..9a51534 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -228,6 +228,10 @@ const articleNoIdx = resolvedCols.ARTICLE_NO; } } + if (articleNo === '59272EN') { + console.log('[DEBUG 59272EN] FINAL processedRow[103]:', finalRow[103], '| length:', finalRow.length); + } + return finalRow.map((val: any, idx: number) => { if (val === undefined || val === null || val === '') return val; const header = (extendedHeaders[idx] || '').toLowerCase();