diff --git a/src/completion/helpers.ts b/src/completion/helpers.ts index 5b9d9e34..9d21efa0 100644 --- a/src/completion/helpers.ts +++ b/src/completion/helpers.ts @@ -139,7 +139,6 @@ export const getCompletions = ( session: boolean ): CompletionOption[] => { const parts = (dotQuery || '').split('.'); - let currentProps: CompletionProperty[] = session ? schema.root : schema.root_no_session; @@ -193,7 +192,6 @@ export const getCompletions = ( } } } - console.log(currentProps); return currentProps.map((prop: CompletionProperty) => { const name =