Skip to content

Commit

Permalink
fix: fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
katharinawuensche committed Oct 9, 2024
1 parent ab67dd1 commit 6ae90d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/geo-map.client.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,10 @@ onMounted(async () => {
});
});
watch(() => props.markers, updateMarkers);
watch(
() => props.markers,
() => updateMarkers(),
);
const resize = debounce(() => {
if (context.map === null) {
Expand Down

0 comments on commit 6ae90d5

Please sign in to comment.