Commit 205bf7ed authored by Steven's avatar Steven

chore: update link target

parent cdcb61da
...@@ -47,12 +47,12 @@ const Link: React.FC<Props> = ({ text, url }: Props) => { ...@@ -47,12 +47,12 @@ const Link: React.FC<Props> = ({ text, url }: Props) => {
} }
arrow arrow
> >
<MLink underline="always" href={url}> <MLink underline="always" target="_blank" href={url}>
{text || url} {text || url}
</MLink> </MLink>
</Tooltip> </Tooltip>
) : ( ) : (
<MLink underline="always" href={url}> <MLink underline="always" target="_blank" href={url}>
{text || url} {text || url}
</MLink> </MLink>
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment