aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/links/link.tsx')
-rw-r--r--src/components/atoms/links/link.tsx13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/components/atoms/links/link.tsx b/src/components/atoms/links/link.tsx
index c8ba273..8991f38 100644
--- a/src/components/atoms/links/link.tsx
+++ b/src/components/atoms/links/link.tsx
@@ -53,13 +53,12 @@ const Link: FC<LinkProps> = ({
{children}
</a>
) : (
- <NextLink href={href}>
- <a
- hrefLang={lang}
- className={`${styles.link} ${downloadClass} ${className}`}
- >
- {children}
- </a>
+ <NextLink
+ className={`${styles.link} ${downloadClass} ${className}`}
+ href={href}
+ hrefLang={lang}
+ >
+ {children}
</NextLink>
);
};