File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,8 @@ class AccountDebug {
195195 item : { state : SubscriptionState . Paid , planId : SubscriptionPlanId . Advanced } ,
196196 } ,
197197 {
198- label : 'Teams ' ,
199- description : 'Teams plan, account' ,
198+ label : 'Business ' ,
199+ description : 'Business plan, account' ,
200200 iconPath : new ThemeIcon ( 'blank' ) ,
201201 item : { state : SubscriptionState . Paid , planId : SubscriptionPlanId . Teams } ,
202202 } ,
Original file line number Diff line number Diff line change @@ -150,27 +150,27 @@ export function getSubscriptionPlanName(id: SubscriptionPlanId): string {
150150
151151export function getSubscriptionPlanTier (
152152 id : SubscriptionPlanId ,
153- ) : 'Community' | 'Pro' | 'Advanced' | 'Teams ' | 'Enterprise' {
153+ ) : 'Community' | 'Pro' | 'Advanced' | 'Business ' | 'Enterprise' {
154154 switch ( id ) {
155155 case SubscriptionPlanId . Pro :
156156 return 'Pro' ;
157157 case SubscriptionPlanId . Advanced :
158158 return 'Advanced' ;
159159 case SubscriptionPlanId . Teams :
160- return 'Teams ' ;
160+ return 'Business ' ;
161161 case SubscriptionPlanId . Enterprise :
162162 return 'Enterprise' ;
163163 default :
164164 return 'Community' ;
165165 }
166166}
167167
168- export function getSubscriptionPlanTierType ( id : SubscriptionPlanId ) : 'PRO' | 'ADVANCED' | 'TEAMS ' | 'ENTERPRISE' {
168+ export function getSubscriptionPlanTierType ( id : SubscriptionPlanId ) : 'PRO' | 'ADVANCED' | 'BUSINESS ' | 'ENTERPRISE' {
169169 switch ( id ) {
170170 case SubscriptionPlanId . Advanced :
171171 return 'ADVANCED' ;
172172 case SubscriptionPlanId . Teams :
173- return 'TEAMS ' ;
173+ return 'BUSINESS ' ;
174174 case SubscriptionPlanId . Enterprise :
175175 return 'ENTERPRISE' ;
176176 default :
You can’t perform that action at this time.
0 commit comments