chore: remove comments

This commit is contained in:
Arman
2025-04-11 10:15:11 +02:00
parent ab5d168c58
commit 06801e4c4b
@@ -40,12 +40,10 @@
if ('message' in zone) {
const blob = new Blob([zone.message as string], { type: 'text/plain' });
// Create download link
const downloadLink = document.createElement('a');
downloadLink.href = URL.createObjectURL(blob);
downloadLink.download = `${data.domain.domain}.txt`;
// Trigger download and clean up
document.body.appendChild(downloadLink);
downloadLink.click();
document.body.removeChild(downloadLink);