diff --git a/src/sql/workbench/contrib/resourceViewer/browser/resourceViewer.contribution.ts b/src/sql/workbench/contrib/resourceViewer/browser/resourceViewer.contribution.ts index 054fb166c5..45fe5e6999 100644 --- a/src/sql/workbench/contrib/resourceViewer/browser/resourceViewer.contribution.ts +++ b/src/sql/workbench/contrib/resourceViewer/browser/resourceViewer.contribution.ts @@ -54,7 +54,8 @@ class ResourceViewerContributor implements IWorkbenchContribution { @IConfigurationService readonly configurationService: IConfigurationService, @IProductService readonly productService: IProductService ) { - if (productService.quality !== 'stable' && productService.quality !== 'saw' && configurationService.getValue('workbench.enablePreviewFeatures')) { + // Only show for insiders and dev + if (['insiders', ''].includes(productService.quality ?? '') && configurationService.getValue('workbench.enablePreviewFeatures')) { registerResourceViewerContainer(); } }