From 7d654c37af9ca25163f3f04160088f1aa4fcc26a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 27 May 2026 19:47:39 +0000 Subject: [PATCH] Update inline suggestions quota message to limit Co-authored-by: eli-w-king <201316543+eli-w-king@users.noreply.github.com> --- .../contrib/chat/browser/chatStatus/chatStatusEntry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusEntry.ts b/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusEntry.ts index 1a21aec2e9a..3a01b337a69 100644 --- a/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusEntry.ts +++ b/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusEntry.ts @@ -189,7 +189,7 @@ export class ChatStatusBarEntry extends Disposable implements IWorkbenchContribu if (chatQuotaExceeded && !completionsQuotaExceeded) { quotaWarning = localize('chatQuotaExceededStatus', "Chat quota reached"); } else if (completionsQuotaExceeded && !chatQuotaExceeded) { - quotaWarning = localize('completionsQuotaExceededStatus', "Inline suggestions quota reached"); + quotaWarning = localize('completionsQuotaExceededStatus', "Inline suggestions limit reached"); } else { quotaWarning = localize('chatAndCompletionsQuotaExceededStatus', "Quota reached"); }