chore: update link target

This commit is contained in:
Steven 2024-04-24 22:02:11 +08:00
parent cdcb61da17
commit 205bf7ed0e

View File

@ -47,12 +47,12 @@ const Link: React.FC<Props> = ({ text, url }: Props) => {
}
arrow
>
<MLink underline="always" href={url}>
<MLink underline="always" target="_blank" href={url}>
{text || url}
</MLink>
</Tooltip>
) : (
<MLink underline="always" href={url}>
<MLink underline="always" target="_blank" href={url}>
{text || url}
</MLink>
);