Skip to content

Commit

Permalink
Remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ajuvonen committed Mar 27, 2024
1 parent 4ddc5f7 commit a0a2ac0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/views/ExportView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit a0a2ac0

Please sign in to comment.