diff --git a/resources/js/components/Dashboard/AdminView/Components/MaturityCyberMap.vue b/resources/js/components/Dashboard/AdminView/Components/MaturityCyberMap.vue
index c12a5cbc1993d20fac777218e1579c42fd42cdb7..91e028ffea2eeda89f4dc1651c38c3c3f91c7605 100644
--- a/resources/js/components/Dashboard/AdminView/Components/MaturityCyberMap.vue
+++ b/resources/js/components/Dashboard/AdminView/Components/MaturityCyberMap.vue
@@ -93,10 +93,10 @@ export default {
                 // zoom: 5,
                 // center: [46.9, 1.9],
                 maxZoom: 19,
-                attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
             }).addTo(this.map);
             this.map.setView([46.9, 1.9], 5); // FRANCE BOUNDS
             this.map.options.maxZoom = 14;
+            this.map.attributionControl.setPrefix('')
             this.initMarkers()
         },
         initMarkers () {
diff --git a/resources/js/components/Organizations/Single/PositionBlock.vue b/resources/js/components/Organizations/Single/PositionBlock.vue
index 5e128e5c47ffe85f158edf2d17c6c788125e2d43..38634bc7b290e29c5ab04b9beb87a6678e6dd2b2 100644
--- a/resources/js/components/Organizations/Single/PositionBlock.vue
+++ b/resources/js/components/Organizations/Single/PositionBlock.vue
@@ -32,10 +32,10 @@ export default {
 
             L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
                 maxZoom: 19,
-                attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
             }).addTo(this.map);
 
             this.map.setView([46.9, 1.9], 5); // FRANCE BOUNDS
+            this.map.attributionControl.setPrefix('')
         },
         setMarker (lat, lng) {
             this.marker = L.circleMarker([lat, lng], {draggable: true, radius: 7,fillColor:'red',fillOpacity:0.5,color: 'red'})