diff --git a/components/dashboard/metrics/Locations.vue b/components/dashboard/metrics/Locations.vue index 51cbc6f..280c5d0 100644 --- a/components/dashboard/metrics/Locations.vue +++ b/components/dashboard/metrics/Locations.vue @@ -10,11 +10,7 @@ const worldMapTopoJSON = ref({}) const areaData = ref([]) async function getWorldMapJSON() { - const data = await $fetch('/world.json', { - query: { - type: 'world', - }, - }) + const data = await $fetch('/world.json') worldMapTopoJSON.value = data }