From 1edfd97ed133bdae95750b55b6326e697b2af5cc Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Wed, 25 Feb 2026 12:47:07 +0100 Subject: [PATCH] feat(ui): exclude #N/D and Unassigned from product line filter options --- App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App.tsx b/App.tsx index 178013d..c3906d6 100644 --- a/App.tsx +++ b/App.tsx @@ -688,7 +688,7 @@ const App: React.FC = () => { customer: getUniqueValues(rawData, 'customer'), year: getUniqueValues(rawData, 'year'), month: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], - line: getUniqueValues(rawData, 'line').filter(v => v !== 'N/D' && v !== 'n/d'), + line: getUniqueValues(rawData, 'line').filter(v => v !== 'N/D' && v !== 'n/d' && v !== '#N/D' && v !== 'Unassigned'), asin: getUniqueValues(rawData, 'asin'), sku: getUniqueValues(rawData, 'sku'), title: getUniqueValues(rawData, 'title'),