diff --git a/src/components/social-icons/index.astro b/src/components/social-icons/index.astro index 955a14b..356fab4 100644 --- a/src/components/social-icons/index.astro +++ b/src/components/social-icons/index.astro @@ -30,10 +30,7 @@ type Props = { const { kind, href, size = 8 } = Astro.props const SocialSvg = components[kind] const sizeClass = size === 8 ? 'size-8' : 'size-6' -let rel = 'noopener noreferrer' -if (kind === 'mastodon') { - rel += ' me' -} +let rel = 'noopener noreferrer me' ---