From 7ee81a14e7b11bc72f8b3d0eb0907abba6d2d6f7 Mon Sep 17 00:00:00 2001 From: Dimitri Kandassamy Date: Mon, 24 Jun 2024 21:24:31 +0200 Subject: [PATCH] fix: Fix 404 errors for github repository and license urls in the footer --- src/components/scafold/Footer.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/scafold/Footer.astro b/src/components/scafold/Footer.astro index 1b812014..1e3c0291 100644 --- a/src/components/scafold/Footer.astro +++ b/src/components/scafold/Footer.astro @@ -1,6 +1,6 @@ --- const repo = 'github.com/lissy93/web-check'; -const github = `https://github.com/${repo}`; +const github = `https://${repo}`; const licenseText = 'MIT'; const licenseLink = `${github}/blob/master/LICENSE`;