Commit d460e6bf authored by Steven's avatar Steven

fix: link node

parent e703b4f7
...@@ -48,12 +48,12 @@ const Link: React.FC<Props> = ({ text, url }: Props) => { ...@@ -48,12 +48,12 @@ const Link: React.FC<Props> = ({ text, url }: Props) => {
arrow arrow
> >
<MLink underline="always" href={url}> <MLink underline="always" href={url}>
{url || text} {text || url}
</MLink> </MLink>
</Tooltip> </Tooltip>
) : ( ) : (
<MLink underline="always" href={url}> <MLink underline="always" href={url}>
{url || text} {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