From 50137bc519b3448e1e75fd6c268a1c57f13b15e7 Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Mon, 22 Aug 2022 11:02:09 +0200 Subject: [PATCH] rm console whitespace --- libs/remix-ui/editor/src/lib/providers/completionProvider.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/remix-ui/editor/src/lib/providers/completionProvider.ts b/libs/remix-ui/editor/src/lib/providers/completionProvider.ts index 2182d4409b..745c5e395b 100644 --- a/libs/remix-ui/editor/src/lib/providers/completionProvider.ts +++ b/libs/remix-ui/editor/src/lib/providers/completionProvider.ts @@ -310,8 +310,7 @@ export class RemixCompletionProvider implements languages.CompletionItemProvider nodes = [...Object.values(fileNodes.imports), ...nodes] // at the nodes at the block itself nodes = [...nodes, ...await this.getBlockNodesAtPosition(position)] - console.log(await this.getBlockNodesAtPosition(position)) - // filter private nodes, only allow them when contract ID is the same as the current contract + // filter private nodes, only allow them when contract ID is the same as the current contract nodes = nodes.filter(node => { if (node.visibility) { if (node.visibility === 'private') {