Skip to content

Commit abe4aab

Browse files
authored
Fix incorrect manage overages command (#248232)
Fix silly command id mistake (#248210)
1 parent 2ca71a1 commit abe4aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export class ChatQuotaExceededPart extends Disposable implements IChatContentPar
117117
button1.label = button1Label;
118118
button1.element.classList.add('chat-quota-error-button');
119119
this._register(button1.onDidClick(async () => {
120-
const commandId = chatEntitlementService.entitlement === ChatEntitlement.Limited ? 'workbench.action.chat.upgradePlan' : 'workbench.action.chat.enableOverages';
120+
const commandId = chatEntitlementService.entitlement === ChatEntitlement.Limited ? 'workbench.action.chat.upgradePlan' : 'workbench.action.chat.manageOverages';
121121
telemetryService.publicLog2<WorkbenchActionExecutedEvent, WorkbenchActionExecutedClassification>('workbenchActionExecuted', { id: commandId, from: 'chat-response' });
122122
await commandService.executeCommand(commandId);
123123

0 commit comments

Comments
 (0)