From 69e54d1bcd202869409e4af5e9a8b4a28d893957 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 20 Dec 2024 10:13:31 +0100 Subject: [PATCH] Remove debug console log and add logging for countries data fetch in index.vue --- app/pages/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/pages/index.vue b/app/pages/index.vue index 6cea42e5..32449897 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -33,8 +33,6 @@ let collectionLinks = [ let collections = await useCollections({ collectionLinks }) -console.log(collections.value, collectionLinks) - let polygons = ref([]) let selectedCollections = ref([]) @@ -102,6 +100,8 @@ let { data: countries } = await useFetch( url.protocol + '//' + url.host + '/countries.json', ) +console.log(countries, url.protocol + '//' + url.host + '/countries.json') + // Find countries that intersect with drawn polygons let intersectingCountries = computed(() => { if (!polygons.value?.length) return []