Remove unused variable

pull/13/head
Anthony Catel 2022-03-28 17:16:51 +02:00
rodzic 4d7ccbb288
commit 912620e44d
1 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -38,7 +38,6 @@
let currentMap : google.maps.Map | undefined;
let currentPolygon : google.maps.Polygon | undefined;
let $updateHashTimer = null;
onMounted(() => {
loader.loadCallback(e => {
@ -108,8 +107,7 @@
["insert_at", "remove_at", "set_at"].forEach(ev => google.maps.event.addListener(poly.getPath(), ev, surfaceUpdated));
updatePolygonColor();
$updateHashTimer = null;
mapLoaded.value = true;
});
})