diff --git a/src/components/EncryptedContactView.astro b/src/components/EncryptedContactView.astro index 89777e6..d4d8399 100644 --- a/src/components/EncryptedContactView.astro +++ b/src/components/EncryptedContactView.astro @@ -165,8 +165,6 @@ function encryptString(input: string, difficultyPrefix = "0000") { async function decryptData(e: Event) { e.preventDefault(); - console.log("decrypting data"); - const detailsDiv = document.getElementById("details-div"); if (detailsDiv) { const encryptedDetails = detailsDiv.dataset.encrypted; @@ -235,7 +233,6 @@ function encryptString(input: string, difficultyPrefix = "0000") { const decodeBtn = document.getElementById("decode-btn"); if (decodeBtn) { decodeBtn.addEventListener("click", decryptData); - console.log("Adding eventlistener"); } });