diff --git a/app/src/stores.tsx b/app/src/stores.tsx index ff889c7..66689bc 100644 --- a/app/src/stores.tsx +++ b/app/src/stores.tsx @@ -211,7 +211,7 @@ export class ContoursStore { 'FR', 'IE', 'IS', - 'IT', + // 'IT', 'LU', 'NL', 'NO', diff --git a/app/src/utils.tsx b/app/src/utils.tsx index 913135f..74d166a 100644 --- a/app/src/utils.tsx +++ b/app/src/utils.tsx @@ -8,6 +8,7 @@ export const slugify = (text: string) => { .normalize('NFD') // Normalize accented characters .replace(/[\u0300-\u036f]/g, '') // Remove diacritical marks .toLowerCase() // Convert to lowercase + .replace('/', '-') // Replace slashes with hyphens .replace(/[^a-z0-9\s-]/g, '') // Remove non-alphanumeric characters .replace(/\s+/g, '-') // Replace spaces with hyphens .replace(/-+/g, '-') // Remove consecutive hyphens