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) => {
arrow
>
<MLink underline="always" href={url}>
{url || text}
{text || url}
</MLink>
</Tooltip>
) : (
<MLink underline="always" href={url}>
{url || text}
{text || url}
</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