diff --git a/app/components/map/clusters.client.vue b/app/components/map/clusters.client.vue
index 691ce33..20480dc 100644
--- a/app/components/map/clusters.client.vue
+++ b/app/components/map/clusters.client.vue
@@ -55,7 +55,9 @@ async function clusterClick(e: FeatureCollection) {
}
new Popup()
.setLngLat(coordinates)
- .setHTML(`This cluster contains ${data.features.length} stops`)
+ .setHTML(
+ `Cluster code : ${feature.properties.code}
This cluster contains ${data.features.length} stops`,
+ )
.addTo(map.map);
}
diff --git a/app/components/map/map.client.vue b/app/components/map/map.client.vue
index ceb0700..a11ac2c 100644
--- a/app/components/map/map.client.vue
+++ b/app/components/map/map.client.vue
@@ -13,24 +13,6 @@
/>
-
-