From 464c2e6ae116143aff3ecaa393128bd8b23904be Mon Sep 17 00:00:00 2001 From: pfych Date: Wed, 29 Sep 2021 14:09:16 +1000 Subject: [PATCH] blockquote: Remove unnecessary log of quote contents --- .../src/views/landscape/components/Graph/blockquote.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/interface/src/views/landscape/components/Graph/blockquote.js b/pkg/interface/src/views/landscape/components/Graph/blockquote.js index bdc819091..1de40de29 100644 --- a/pkg/interface/src/views/landscape/components/Graph/blockquote.js +++ b/pkg/interface/src/views/landscape/components/Graph/blockquote.js @@ -1,6 +1,6 @@ /* eslint-disable */ /** pulled from remark-parse - * + * * critical change is that blockquotes require a newline to be continued, see * the `if(!prefixed) conditional */ @@ -120,7 +120,6 @@ function blockquote(eat, value, silent) { exit = self.enterBlock() contents = self.tokenizeBlock(contents.join(lineFeed), now) - console.log(values); exit() const added = add({type: 'blockquote', children: contents})