From 5819416a7e26cf8d67af67cc23829fafe486a972 Mon Sep 17 00:00:00 2001 From: theamazing0 Date: Sun, 3 Aug 2025 18:29:01 -0400 Subject: [PATCH] Removed console.logs --- src/components/EncryptedContactView.astro | 3 --- 1 file changed, 3 deletions(-) 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"); } });