chore: add noreferrer to external links

This commit is contained in:
johnnyjoy
2025-02-06 20:19:58 +08:00
parent 3a3ffe633d
commit 505fee1abb

View File

@@ -65,7 +65,7 @@ const Link: React.FC<Props> = ({ text, url }: Props) => {
open={showTooltip}
arrow
>
<MLink underline="always" target="_blank" href={url}>
<MLink underline="always" target="_blank" href={url} rel="noopener noreferrer">
<span onMouseEnter={handleMouseEnter} onMouseLeave={() => setShowTooltip(false)}>
{text || url}
</span>