From d50a69308748f61f54716483c98328be05c05e7f Mon Sep 17 00:00:00 2001 From: George Tsiolis Date: Wed, 4 Feb 2026 22:05:00 +0200 Subject: [PATCH] feat: add editor parameter to auth redirect URL --- src/utils/authenticate.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/authenticate.ts b/src/utils/authenticate.ts index ca2cba4..b4e6a22 100644 --- a/src/utils/authenticate.ts +++ b/src/utils/authenticate.ts @@ -69,6 +69,7 @@ async function redirectToLocalStack(): Promise<{ cancelled: boolean }> { // TODO: Gather environment variables in a safer way - e.g. during extension activation // biome-ignore lint/style/noNonNullAssertion: false positive const url = new URL(process.env.LOCALSTACK_WEB_AUTH_REDIRECT!); + url.searchParams.set("editor", env.uriScheme); url.searchParams.set("windowId", redirectSearchParams.get("windowId") ?? ""); const selection = await window.showInformationMessage(