From 6a80ed3ef4315db0fb5924afd71487f0f32d9b2e Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 27 Nov 2023 19:07:12 -0600 Subject: [PATCH] Fix reversed git commit URL assembly --- src/layouts/Base.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index 8dd235e..33b4e78 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -3,7 +3,7 @@ import '@styles/global.scss'; import '@styles/fonts.scss'; import { ViewTransitions } from 'astro:transitions'; -const repository_url = `https://github.com/${import.meta.env.PUBLIC_VERCEL_GIT_REPO_SLUG}/${import.meta.env.PUBLIC_VERCEL_GIT_REPO_OWNER}` +const repository_url = `https://github.com/${import.meta.env.PUBLIC_VERCEL_GIT_REPO_OWNER}/${import.meta.env.PUBLIC_VERCEL_GIT_REPO_SLUG}` const build_revision = import.meta.env.PUBLIC_VERCEL_GIT_COMMIT_SHA; interface Props {