Remove console log from markdown

This commit is contained in:
Mitchell McCaffrey 2021-02-16 08:38:49 +11:00
parent 0b424c31ec
commit dbec58b890

View File

@ -129,7 +129,6 @@ function Link({ href, children }) {
if (linkText === "embed:") {
return <Embed src={href} my={2} />;
} else {
console.log(href);
return <UILink href={href}>{children}</UILink>;
}
}