File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -175,18 +175,22 @@ export function getSubscriptionPlan(
175175}
176176
177177export function getSubscriptionPlanName ( id : SubscriptionPlanId ) {
178+ return `GitLens ${ getSubscriptionPlanTier ( id ) } ` ;
179+ }
180+
181+ export function getSubscriptionPlanTier ( id : SubscriptionPlanId ) {
178182 switch ( id ) {
179183 case SubscriptionPlanId . CommunityWithAccount :
180- return 'GitLens Community' ;
184+ return 'Community' ;
181185 case SubscriptionPlanId . Pro :
182- return 'GitLens Pro' ;
186+ return 'Pro' ;
183187 case SubscriptionPlanId . Teams :
184- return 'GitLens Teams' ;
188+ return 'Teams' ;
185189 case SubscriptionPlanId . Enterprise :
186- return 'GitLens Enterprise' ;
190+ return 'Enterprise' ;
187191 case SubscriptionPlanId . Community :
188192 default :
189- return 'GitLens Community' ;
193+ return 'Community' ;
190194 }
191195}
192196
You can’t perform that action at this time.
0 commit comments