Skip to content

Commit 15572b1

Browse files
authored
Remove '.' from 'Getting Copilot ready' progress (microsoft#252051)
1 parent 606dd1c commit 15572b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/contrib/chat/browser/chatSetup.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ class SetupAgent extends Disposable implements IChatAgentImplementation {
241241

242242
progress({
243243
kind: 'progressMessage',
244-
content: new MarkdownString(localize('waitingCopilot', "Getting Copilot ready.")),
244+
content: new MarkdownString(localize('waitingCopilot', "Getting Copilot ready")),
245245
});
246246

247247
await this.forwardRequestToCopilot(requestModel, progress, chatService, languageModelsService, chatAgentService, chatWidgetService, languageModelToolsService);
@@ -292,7 +292,7 @@ class SetupAgent extends Disposable implements IChatAgentImplementation {
292292
const timeoutHandle = setTimeout(() => {
293293
progress({
294294
kind: 'progressMessage',
295-
content: new MarkdownString(localize('waitingCopilot2', "Copilot is almost ready.")),
295+
content: new MarkdownString(localize('waitingCopilot2', "Copilot is almost ready")),
296296
});
297297
}, 10000);
298298

@@ -403,7 +403,7 @@ class SetupAgent extends Disposable implements IChatAgentImplementation {
403403
case ChatSetupStep.Installing:
404404
progress({
405405
kind: 'progressMessage',
406-
content: new MarkdownString(localize('installingCopilot', "Getting Copilot ready.")),
406+
content: new MarkdownString(localize('installingCopilot', "Getting Copilot ready")),
407407
});
408408
break;
409409
}

0 commit comments

Comments
 (0)