mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
Remove redundant title attr from image link. Closes #2621
This commit is contained in:
parent
2085cf94a3
commit
56d8f799ab
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user