From 8251dd875092f7f452f54ae0c964eac8baf78b29 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Tue, 17 Dec 2024 11:04:56 +0530 Subject: [PATCH] feat: remove maplibre location --- .../dashboard/components-next/message/bubbles/Location.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components-next/message/bubbles/Location.vue b/app/javascript/dashboard/components-next/message/bubbles/Location.vue index 44d53e151..33c8e539d 100644 --- a/app/javascript/dashboard/components-next/message/bubbles/Location.vue +++ b/app/javascript/dashboard/components-next/message/bubbles/Location.vue @@ -72,7 +72,7 @@ const setupMap = () => { keyboard: false, doubleClickZoom: false, }); - new maplibregl.Marker().setLngLat([long.value, lat.value]).addTo(map); + // new maplibregl.Marker().setLngLat([long.value, lat.value]).addTo(map); return map; };