From a0a2ac0031a643adf9e0e5ab156bc1f43e51f445 Mon Sep 17 00:00:00 2001 From: ajuvonen Date: Wed, 27 Mar 2024 13:40:14 +0200 Subject: [PATCH] Remove logging --- src/views/ExportView.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/views/ExportView.vue b/src/views/ExportView.vue index 7a14242..589aa4b 100644 --- a/src/views/ExportView.vue +++ b/src/views/ExportView.vue @@ -38,7 +38,6 @@ const downloadICS = async () => { } else if (value) { const file = new File([value], t('export.filename'), {type: 'text/calendar'}); const url = URL.createObjectURL(file); - console.log(url); const anchor = document.createElement('a'); anchor.href = url; anchor.download = t('export.filename');