From 6fa208cb3e4e7a7a589fe1cfdd4ecabb7686376e Mon Sep 17 00:00:00 2001 From: Sergei Shmakov Date: Thu, 11 Sep 2025 17:39:00 +0200 Subject: [PATCH] Fixes connection flow when more integrations are needed to be connected --- src/plus/integrations/integrationService.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plus/integrations/integrationService.ts b/src/plus/integrations/integrationService.ts index c412af62e4033..af66d72128ede 100644 --- a/src/plus/integrations/integrationService.ts +++ b/src/plus/integrations/integrationService.ts @@ -174,6 +174,9 @@ export class IntegrationService implements Disposable { if (cloudIntegrationTypes.length > 0) { query += `&provider=${cloudIntegrationTypes.join(',')}`; } + if (cloudIntegrationTypes.length > 1) { + query += '&flow=expanded'; + } } const baseQuery = query;