Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mdshamoon committed Dec 20, 2023
1 parent 82b071b commit b85cb17
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/completion/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ export const getCompletions = (
session: boolean
): CompletionOption[] => {
const parts = (dotQuery || '').split('.');

let currentProps: CompletionProperty[] = session
? schema.root
: schema.root_no_session;
Expand Down Expand Up @@ -193,7 +192,6 @@ export const getCompletions = (
}
}
}
console.log(currentProps);

return currentProps.map((prop: CompletionProperty) => {
const name =
Expand Down

0 comments on commit b85cb17

Please sign in to comment.