From c8d16eb08c3e802cf6cb04e7c1e311d60c81d80e Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Thu, 16 Jan 2025 17:09:01 +0100 Subject: [PATCH] workaround for https://github.com/microsoft/vscode-copilot/issues/11639 (#238058) --- src/vs/workbench/contrib/chat/browser/chatInputPart.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/chat/browser/chatInputPart.ts b/src/vs/workbench/contrib/chat/browser/chatInputPart.ts index 031fa500a95..7cac98241cf 100644 --- a/src/vs/workbench/contrib/chat/browser/chatInputPart.ts +++ b/src/vs/workbench/contrib/chat/browser/chatInputPart.ts @@ -1314,7 +1314,7 @@ export class ChatInputPart extends Disposable implements IHistoryNavigationWidge } if (currentChatEditingState === ChatEditingSessionState.StreamingEdits || chatWidget?.viewModel?.requestInProgress) { - this._chatEditsProgress ??= new ProgressBar(innerContainer); + // this._chatEditsProgress ??= new ProgressBar(innerContainer); this._chatEditsProgress?.infinite().show(500); }