diff --git a/src/vs/workbench/services/extensions/electron-browser/extensionService.ts b/src/vs/workbench/services/extensions/electron-browser/extensionService.ts index 9bd90935790bbfbc26c7b35356053f1c784b169b..5275ed71337b94f763870f373cda5fbe28bd81be 100644 --- a/src/vs/workbench/services/extensions/electron-browser/extensionService.ts +++ b/src/vs/workbench/services/extensions/electron-browser/extensionService.ts @@ -426,7 +426,10 @@ export class ExtensionService extends Disposable implements IExtensionService { } private _onResponsiveStateChanged(state: ResponsiveState): void { - if (this._isDev) { + // Do not show the notification anymore + // See https://github.com/Microsoft/vscode/issues/60318 + const DISABLE_PROMPT = true; + if (this._isDev || DISABLE_PROMPT) { return; // do not show any notification when developing an extension (https://github.com/Microsoft/vscode/issues/59251) }