diff --git a/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.ts b/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.ts index 3fe9cf0b4a3..0e80cc8ca4e 100644 --- a/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.ts +++ b/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.ts @@ -451,7 +451,7 @@ export class InlineCompletionsSource extends Disposable { notShownReason: undefined, renameCreated: false, renameDuration: undefined, - renameTimedOut: undefined, + renameTimedOut: false, }; const dataChannel = this._instantiationService.createInstance(DataChannelForwardingTelemetryService); diff --git a/src/vs/editor/contrib/inlineCompletions/browser/telemetry.ts b/src/vs/editor/contrib/inlineCompletions/browser/telemetry.ts index 34b8c04394f..4ef2df054bd 100644 --- a/src/vs/editor/contrib/inlineCompletions/browser/telemetry.ts +++ b/src/vs/editor/contrib/inlineCompletions/browser/telemetry.ts @@ -41,7 +41,7 @@ export type InlineCompletionEndOfLifeEvent = { notShownReason: string | undefined; renameCreated: boolean; renameDuration: number | undefined; - renameTimedOut: boolean | undefined; + renameTimedOut: boolean; // rendering viewKind: string | undefined; cursorColumnDistance: number | undefined;