Skip to content

Commit

Permalink
fix: hammy jumpscare (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoudham authored Sep 14, 2024
1 parent addb08b commit 0cf4429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/cards/User.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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);
---
Expand Down

0 comments on commit 0cf4429

Please sign in to comment.