File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/vs/workbench/contrib/userDataSync/browser Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -575,8 +575,10 @@ export class UserDataSyncWorkbenchContribution extends Disposable implements IWo
575575 label : getSyncAreaLabel ( SyncResource . Profiles ) ,
576576 } ] ;
577577
578- // if the `reusable prompt` feature is enabled, add appropriate item to the list
579- if ( PromptsConfig . enabled ( this . configService ) ) {
578+ // if the `reusable prompt` feature is enabled and in vscode
579+ // insiders, add the `Prompts` resource item to the list
580+ const isInsiders = ( this . productService . quality !== 'stable' ) ;
581+ if ( PromptsConfig . enabled ( this . configService ) && isInsiders ) {
580582 result . push ( {
581583 id : SyncResource . Prompts ,
582584 label : getSyncAreaLabel ( SyncResource . Prompts )
You can’t perform that action at this time.
0 commit comments