Remove redundant title attr from image link. Closes #2621
This commit is contained in:
@@ -7,7 +7,6 @@ export type SocialLinksProps = {
|
|||||||
links: SocialLink[];
|
links: SocialLink[];
|
||||||
};
|
};
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
export const SocialLinks: FC<SocialLinksProps> = ({ links }) => (
|
export const SocialLinks: FC<SocialLinksProps> = ({ links }) => (
|
||||||
<div className={styles.links}>
|
<div className={styles.links}>
|
||||||
{links.map(link => (
|
{links.map(link => (
|
||||||
@@ -22,7 +21,6 @@ export const SocialLinks: FC<SocialLinksProps> = ({ links }) => (
|
|||||||
<Image
|
<Image
|
||||||
src={link.icon || '/img/platformlogos/default.svg'}
|
src={link.icon || '/img/platformlogos/default.svg'}
|
||||||
alt={link.platform}
|
alt={link.platform}
|
||||||
title={link.platform}
|
|
||||||
className={styles.link}
|
className={styles.link}
|
||||||
width="30"
|
width="30"
|
||||||
height="30"
|
height="30"
|
||||||
|
|||||||
Reference in New Issue
Block a user