Skip to content

Commit e66a46d

Browse files
committed
enables the user prompt synchronization for all vscode qualities
1 parent c2261b0 commit e66a46d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -619,8 +619,7 @@ export class UserDataSyncWorkbenchContribution extends Disposable implements IWo
619619

620620
// if the `reusable prompt` feature is enabled and in vscode
621621
// insiders, add the `Prompts` resource item to the list
622-
const isInsiders = (this.productService.quality !== 'stable');
623-
if (PromptsConfig.enabled(this.configService) && isInsiders) {
622+
if (PromptsConfig.enabled(this.configService) === true) {
624623
result.push({
625624
id: SyncResource.Prompts,
626625
label: getSyncAreaLabel(SyncResource.Prompts)

0 commit comments

Comments
 (0)