Address CCR comments for EDU sku (#305659)

* Address comments

* Fix enum values
This commit is contained in:
Logan Ramos
2026-03-27 10:20:44 -04:00
committed by GitHub
parent f867ff35d3
commit 8ee42df50e
2 changed files with 6 additions and 5 deletions

View File

@@ -100,6 +100,7 @@ function getModelPickerActionBarActionProvider(commandService: ICommandService,
const additionalActions: IAction[] = [];
if (
chatEntitlementService.entitlement === ChatEntitlement.Free ||
chatEntitlementService.entitlement === ChatEntitlement.EDU ||
chatEntitlementService.entitlement === ChatEntitlement.Pro ||
chatEntitlementService.entitlement === ChatEntitlement.ProPlus ||
chatEntitlementService.entitlement === ChatEntitlement.Business ||

View File

@@ -80,15 +80,15 @@ export enum ChatEntitlement {
/** Signed-up to Free */
Free = 5,
/** Signed-up to EDU */
EDU = 6,
EDU = 10,
/** Signed-up to Pro */
Pro = 7,
Pro = 6,
/** Signed-up to Pro Plus */
ProPlus = 8,
ProPlus = 7,
/** Signed-up to Business */
Business = 9,
Business = 8,
/** Signed-up to Enterprise */
Enterprise = 10,
Enterprise = 9,
}
export interface IChatSentiment {