From ea7224c8d145f70e4eeb05ac2bd03db401cf5da1 Mon Sep 17 00:00:00 2001 From: jankuca Date: Tue, 4 Nov 2025 11:16:38 +0100 Subject: [PATCH] fix: allow opening of integrations management with no integrations in project --- src/notebooks/deepnote/integrations/integrationManager.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/notebooks/deepnote/integrations/integrationManager.ts b/src/notebooks/deepnote/integrations/integrationManager.ts index 5a9c307f2..1b495e19a 100644 --- a/src/notebooks/deepnote/integrations/integrationManager.ts +++ b/src/notebooks/deepnote/integrations/integrationManager.ts @@ -173,11 +173,6 @@ export class IntegrationManager implements IIntegrationManager { } } - if (integrations.size === 0) { - void window.showInformationMessage(l10n.t('No integrations found in this project.')); - return; - } - // Show the webview with optional selected integration await this.webviewProvider.show(projectId, integrations, selectedIntegrationId); }