diff --git a/src/components/RepForm.vue b/src/components/RepForm.vue index 3722f52..ea93126 100644 --- a/src/components/RepForm.vue +++ b/src/components/RepForm.vue @@ -30,7 +30,6 @@ onMounted(() => { function acceptGeoloc() { navigator.permissions.query({ name: "geolocation" }).then((result) => { - console.log(result.state); if (result.state === "granted" || result.state === "prompt") { hasAcceptedGeoloc.value = true; hasRefusedGeoloc.value = false;