Forgot to add taget to the a tag in FriendLink

This commit is contained in:
BuyMyMojo 2024-12-16 01:14:38 +11:00
parent dbf70c5305
commit 0df6271d7e

View file

@ -1,4 +1,4 @@
---
const { name, image, target } = Astro.props;
---
<a href={`${target}`}><img class="badge" src={`${image}`} alt={`${name}`} decoding="async" /></a>
<a href={`${target}`} target="_blank"><img class="badge" src={`${image}`} alt={`${name}`} decoding="async" /></a>