Skip to content

Commit 557dbf1

Browse files
committed
Remove autocomplete console.logs.
1 parent e332fd4 commit 557dbf1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

playground/next/editor.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,6 @@ function completeJSONLDTerms(context) {
136136
const nodeBefore = syntaxTree(context.state).resolveInner(context.pos, -1);
137137
const nearestProperty = getNearestPropertyName(context.state, context.pos);
138138

139-
console.log('nearest property name', nearestProperty);
140-
console.log(nodeBefore.name, nodeBefore._parent?.name, nodeBefore);
141-
142139
const textBefore = context.state.sliceDoc(nodeBefore.from, context.pos);
143140
const tagBefore = /@\w*$/.exec(textBefore);
144141
if (!tagBefore && !context.explicit

0 commit comments

Comments
 (0)