From 997a7cdc472b81e50ce1200d61b876220d8ef4f2 Mon Sep 17 00:00:00 2001 From: limepotato Date: Tue, 3 Sep 2024 16:13:39 -0600 Subject: [PATCH] unnecessary debug --- astro/public/scripts/sga.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/astro/public/scripts/sga.js b/astro/public/scripts/sga.js index 9a8df47..bbc932e 100644 --- a/astro/public/scripts/sga.js +++ b/astro/public/scripts/sga.js @@ -8,14 +8,12 @@ function enableSGA() { document.getElementById("body").style.fontFamily = "standardGalactic, system-ui"; sessionStorage.setItem("sgaEnabled", 1); - console.debug(sessionStorage.getItem("sgaEnabled")); } function disableSGA() { document.getElementById("body").style.fontFamily = "departure-mono, system-ui"; sessionStorage.removeItem("sgaEnabled"); - console.debug(sessionStorage.getItem("sgaEnabled")); } function toggleTheme() {