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 12ddceb commit 5ef4bfeCopy full SHA for 5ef4bfe
src/vs/workbench/contrib/chat/browser/chatStatus.ts
@@ -491,7 +491,7 @@ class ChatStatusDashboard extends Disposable {
491
)
492
));
493
494
- if (supportsOverage) {
+ if (supportsOverage && (this.chatEntitlementService.entitlement === ChatEntitlement.Pro || this.chatEntitlementService.entitlement === ChatEntitlement.ProPlus)) {
495
const manageOverageButton = disposables.add(new Button(quotaIndicator, { ...defaultButtonStyles, secondary: true }));
496
manageOverageButton.label = localize('enableAdditionalUsage', "Manage paid premium requests");
497
disposables.add(manageOverageButton.onDidClick(() => this.runCommandAndClose(() => this.openerService.open(URI.parse(defaultChat.manageOverageUrl)))));
0 commit comments