Skip to content

Commit 46cb8c2

Browse files
committed
Revert unused changes
1 parent 04f05c7 commit 46cb8c2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libs/remix-ui/editor/src/lib/providers/inlineCompletionProvider.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ const _paq = (window._paq = window._paq || [])
77

88
export class RemixInLineCompletionProvider implements monacoTypes.languages.InlineCompletionsProvider {
99
props: EditorUIProps
10+
monaco: any
1011
completionEnabled: boolean
1112
task: string = 'code_completion'
1213
currentCompletion: any
1314
private lastRequestTime: number = 0;
1415
private readonly minRequestInterval: number = 200;
1516

16-
constructor(props: any) {
17+
constructor(props: any, monaco: any) {
1718
this.props = props
19+
this.monaco = monaco
1820
this.completionEnabled = true
1921
this.currentCompletion = {
2022
text: '',

0 commit comments

Comments
 (0)