From be7009353a0a5609f4b442c3e0511bf32822b724 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Thu, 23 Apr 2026 16:54:31 +0200 Subject: [PATCH] temp: diagnostic log v2 for 51016DE --- src/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 22d0b57..8dd7c36 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -134,6 +134,9 @@ export default function App() { console.log('Fetching synced data from Supabase...'); const syncedData = await getAllSyncedRows(); + // TEMP DIAG + const d = syncedData['51016DE']; + console.log('[DIAG v2] 51016DE:', d ? `status=${d.status} len=${d.data?.length} [103]=${JSON.stringify(d.data?.[103])}` : 'NOT FOUND'); // Extend headers with virtual columns if the Excel is shorter than the saved data. // COLUMNS hardcoded indices (PRODUCT_TYPE=103, ITEM_TO_LOGISTIC=104, etc.) are used