aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/code/src/inlay_hints.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts
index ac07b2ea0..7b9dcfb22 100644
--- a/editors/code/src/inlay_hints.ts
+++ b/editors/code/src/inlay_hints.ts
@@ -101,7 +101,7 @@ class HintsUpdater {
101 clearHints() { 101 clearHints() {
102 for (const file of this.sourceFiles) { 102 for (const file of this.sourceFiles) {
103 file.inlaysRequest?.cancel(); 103 file.inlaysRequest?.cancel();
104 file.renderHints([], this.client.protocol2CodeConverter) 104 file.renderHints([], this.client.protocol2CodeConverter);
105 } 105 }
106 } 106 }
107 107