We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59f9878 commit 1841187Copy full SHA for 1841187
src/vs/workbench/contrib/chat/browser/chatStatus.ts
@@ -489,7 +489,7 @@ class ChatStatusDashboard extends Disposable {
489
)
490
));
491
492
- if (supportsOverage) {
+ if (supportsOverage && (this.chatEntitlementService.entitlement === ChatEntitlement.Pro || this.chatEntitlementService.entitlement === ChatEntitlement.ProPlus)) {
493
const manageOverageButton = disposables.add(new Button(quotaIndicator, { ...defaultButtonStyles, secondary: true }));
494
manageOverageButton.label = localize('enableAdditionalUsage', "Manage paid premium requests");
495
disposables.add(manageOverageButton.onDidClick(() => this.runCommandAndClose(() => this.openerService.open(URI.parse(defaultChat.manageOverageUrl)))));
0 commit comments