Merge pull request #16413 from strapi/fix/keys-on-social-links

Fix a keys problem with the social links on homepage
This commit is contained in:
Fernando Chávez 2023-04-17 10:33:49 +02:00 committed by GitHub
commit 04be2176ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,7 +187,7 @@ const SocialLinks = () => {
<GridGap>
{socialLinksExtended.map(({ icon, link, name }) => {
return (
<GridItem col={6} s={12} key={name}>
<GridItem col={6} s={12} key={name.id}>
<LinkCustom size="L" startIcon={icon} variant="tertiary" href={link} isExternal>
{formatMessage(name)}
</LinkCustom>