@@ -280,35 +280,30 @@ export class SubscriptionService implements Disposable {
280280 switch ( subscription . state ) {
281281 case SubscriptionState . VerificationRequired :
282282 case SubscriptionState . Community :
283- case SubscriptionState . ProPreview :
284- case SubscriptionState . ProPreviewExpired :
285283 void executeCommand < OpenWalkthroughCommandArgs > ( Commands . OpenWalkthrough , {
286284 ...source ,
287- step : 'pro-features ' ,
285+ step : 'get-started-community ' ,
288286 } ) ;
289287 break ;
290288 case SubscriptionState . ProTrial :
289+ case SubscriptionState . ProPreview :
291290 void executeCommand < OpenWalkthroughCommandArgs > ( Commands . OpenWalkthrough , {
292291 ...source ,
293- step : 'pro-trial' ,
294- } ) ;
295- break ;
296- case SubscriptionState . ProTrialExpired :
297- void executeCommand < OpenWalkthroughCommandArgs > ( Commands . OpenWalkthrough , {
298- ...source ,
299- step : 'pro-upgrade' ,
292+ step : 'welcome-in-trial' ,
300293 } ) ;
301294 break ;
302295 case SubscriptionState . ProTrialReactivationEligible :
296+ case SubscriptionState . ProTrialExpired :
297+ case SubscriptionState . ProPreviewExpired :
303298 void executeCommand < OpenWalkthroughCommandArgs > ( Commands . OpenWalkthrough , {
304299 ...source ,
305- step : 'pro-reactivate ' ,
300+ step : 'welcome-in-trial-expired ' ,
306301 } ) ;
307302 break ;
308303 case SubscriptionState . Paid :
309304 void executeCommand < OpenWalkthroughCommandArgs > ( Commands . OpenWalkthrough , {
310305 ...source ,
311- step : 'pro -paid' ,
306+ step : 'welcome -paid' ,
312307 } ) ;
313308 break ;
314309 }
0 commit comments