handle a weird quick click.

This commit is contained in:
Bill Richardson 2026-02-25 16:07:00 -05:00
parent e1a8f8a00c
commit 836e383b46

View file

@ -29,9 +29,10 @@ export default {
}
},
async beforeMount() {
if (this.markers && this.markers.length > 0) {
await this.createMapWithMarkersForAddresses(this.markers);
}
await this.createMapWithMarkersForAddresses(this.markers)
.catch(() => {
console.error('Error creating map with markers: if handled jest fails to run tests');
});
},
methods: {
async getMap(center) {