Skip to content

Commit

Permalink
fix: fix avatar wrapper class in Creator component
Browse files Browse the repository at this point in the history
  • Loading branch information
jagcruz committed Sep 12, 2024
1 parent 1921391 commit 7e02aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Creator/Creator.astro
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const { name, description, avatar, direction, links, birthdate } = Astro.props;

<article class:list={['creator', direction]} data-birthdate={birthdate}>
<header>
<div class:list="avatar-wrapper">
<div class="avatar-wrapper">
<img src={`${BASE_URL}/assets/images/creators/${avatar}`} alt={name} class="avatar" />
</div>

Expand Down

0 comments on commit 7e02aa0

Please sign in to comment.