From 550269724aa820d13997fd415be89700746d591a Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Mon, 20 Apr 2026 13:20:17 +0200 Subject: [PATCH] Fix: export isAllowedCustomer to resolve build error --- services/dataProcessor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/dataProcessor.ts b/services/dataProcessor.ts index 8c4964e..8e193b5 100644 --- a/services/dataProcessor.ts +++ b/services/dataProcessor.ts @@ -303,7 +303,7 @@ const getColumnValue = (row: any, aliases: (string | RegExp)[]): string => { export const PAN_EU_COUNTRIES = ['Amazon DE', 'Amazon IT', 'Amazon FR', 'Amazon ES', 'Amazon NL', 'Amazon PL', 'Amazon BE', 'Amazon SE']; const ALLOWED_CUSTOMERS = [...PAN_EU_COUNTRIES, 'Amazon UK', 'Amazon SC', 'Pan-EU']; -const isAllowedCustomer = (customer: string): boolean => { +export const isAllowedCustomer = (customer: string): boolean => { if (!customer) return false; const normCustomer = customer.trim().toLowerCase();