diff --git a/editors/code/src/commands/inlay_hints.ts b/editors/code/src/commands/inlay_hints.ts index 34f7ccddb6b..3ba9da48b66 100644 --- a/editors/code/src/commands/inlay_hints.ts +++ b/editors/code/src/commands/inlay_hints.ts @@ -85,7 +85,10 @@ export class HintsUpdater { range: hint.range, renderOptions: { after: { contentText: `: ${hint.label}` } } })); - return editor.setDecorations(typeHintDecorationType, newDecorations); + return editor.setDecorations( + typeHintDecorationType, + newDecorations + ); } }