diff --git a/codex-vscode/src/services/undefinedTextEditor.service.ts b/codex-vscode/src/services/undefinedTextEditor.service.ts index 9ab52ed3..fc8dc23f 100644 --- a/codex-vscode/src/services/undefinedTextEditor.service.ts +++ b/codex-vscode/src/services/undefinedTextEditor.service.ts @@ -87,8 +87,15 @@ export class UndefinedTextEditorService implements ITextEditorService { } public async updateContextDecorations(force: boolean): Promise { - if (force) await this.getContexts(force); - await updateDecorations(this.contexts, LINE_DECORATION, GUTTER_DECORATION, this.textEditor); + if (force) { + await this.getContexts(force); + } + await updateDecorations( + this.contexts, + LINE_DECORATION, + GUTTER_DECORATION, + this.textEditor + ); } public async updateDecorations(force: boolean): Promise {