From 0cf4429f24b73c7ea1c3907308d5cf0c65033850 Mon Sep 17 00:00:00 2001 From: Hammy <58985301+sgoudham@users.noreply.github.com> Date: Sat, 14 Sep 2024 22:20:12 +0100 Subject: [PATCH] fix: hammy jumpscare (#95) --- src/components/cards/User.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/cards/User.astro b/src/components/cards/User.astro index 7f1f42c1..26be5779 100644 --- a/src/components/cards/User.astro +++ b/src/components/cards/User.astro @@ -14,7 +14,7 @@ interface Props { } const { name, color } = Astro.props; -const href = !isProd ? Astro.props.url : "https://github.com/sgoudham"; +const href = isProd ? Astro.props.url : "https://github.com/sgoudham"; const username = href.split("/").pop() as string; const isPlaceholder = (maintainersWithoutAvatars as string[]).includes(username); ---