Skip to content

Commit 69e54d1

Browse files
Remove debug console log and add logging for countries data fetch in index.vue
1 parent 63b2e39 commit 69e54d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/pages/index.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ let collectionLinks = [
3333
3434
let collections = await useCollections({ collectionLinks })
3535
36-
console.log(collections.value, collectionLinks)
37-
3836
let polygons = ref([])
3937
let selectedCollections = ref<string[]>([])
4038
@@ -102,6 +100,8 @@ let { data: countries } = await useFetch(
102100
url.protocol + '//' + url.host + '/countries.json',
103101
)
104102
103+
console.log(countries, url.protocol + '//' + url.host + '/countries.json')
104+
105105
// Find countries that intersect with drawn polygons
106106
let intersectingCountries = computed(() => {
107107
if (!polygons.value?.length) return []

0 commit comments

Comments
 (0)