From dbec58b890ec3e761b92ed626c8cec47e7961c3d Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Tue, 16 Feb 2021 08:38:49 +1100 Subject: [PATCH] Remove console log from markdown --- src/components/Markdown.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Markdown.js b/src/components/Markdown.js index a9381c5..52d67fe 100644 --- a/src/components/Markdown.js +++ b/src/components/Markdown.js @@ -129,7 +129,6 @@ function Link({ href, children }) { if (linkText === "embed:") { return ; } else { - console.log(href); return {children}; } }