Fix: export isAllowedCustomer to resolve build error

This commit is contained in:
Christian Vidal Wolf
2026-04-20 13:20:17 +02:00
parent 117aa0626f
commit 550269724a
+1 -1
View File
@@ -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();