Skip to content

Commit

Permalink
Merge pull request #1189 from thunderstore-io/community-card-titles
Browse files Browse the repository at this point in the history
Fix community card anchor accesibility
  • Loading branch information
Oksamies committed Aug 28, 2024
2 parents 93de858 + 5405ff7 commit fef4c6d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ export function CommunityCard(props: Props) {

return (
<div className={styles.root}>
<a href={`/c/${community.identifier}`}>
<a href={`/c/${community.identifier}`} title={community.name}>
<ImageWithFallback
src={community.cover_image_url}
type="community"
rootClass={styles.imageWrapper}
/>
</a>
<div className={styles.title} title={community.name}>
<div className={styles.title}>
<a href={`/c/${community.identifier}`}>{community.name}</a>
</div>
<div className={styles.metaItemList}>
Expand Down

0 comments on commit fef4c6d

Please sign in to comment.