From e33dab951630c0627d5ebb24ee1a472d1aa029d6 Mon Sep 17 00:00:00 2001 From: Korbs Date: Thu, 30 May 2024 00:02:03 -0400 Subject: [PATCH] Remove unused variable --- src/components/global/Head.astro | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/components/global/Head.astro b/src/components/global/Head.astro index d2ce668..15fc787 100644 --- a/src/components/global/Head.astro +++ b/src/components/global/Head.astro @@ -1,12 +1,5 @@ --- const { Title, Description } = Astro.props; - -// Don't count views in local environment -if (Astro.url.hostname === "localhost") { - var UsePiwik = false; -} else { - var UsePiwik = true; -} ---