Remove redundant title attr from image link. Closes #2621

This commit is contained in:
Gabe Kangas 2023-01-24 14:17:03 -08:00
parent 2085cf94a3
commit 56d8f799ab
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -7,7 +7,6 @@ export type SocialLinksProps = {
links: SocialLink[];
};
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export const SocialLinks: FC<SocialLinksProps> = ({ links }) => (
<div className={styles.links}>
{links.map(link => (
@ -22,7 +21,6 @@ export const SocialLinks: FC<SocialLinksProps> = ({ links }) => (
<Image
src={link.icon || '/img/platformlogos/default.svg'}
alt={link.platform}
title={link.platform}
className={styles.link}
width="30"
height="30"