We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71577ac commit d50a693Copy full SHA for d50a693
1 file changed
src/utils/authenticate.ts
@@ -69,6 +69,7 @@ async function redirectToLocalStack(): Promise<{ cancelled: boolean }> {
69
// TODO: Gather environment variables in a safer way - e.g. during extension activation
70
// biome-ignore lint/style/noNonNullAssertion: false positive
71
const url = new URL(process.env.LOCALSTACK_WEB_AUTH_REDIRECT!);
72
+ url.searchParams.set("editor", env.uriScheme);
73
url.searchParams.set("windowId", redirectSearchParams.get("windowId") ?? "");
74
75
const selection = await window.showInformationMessage(
0 commit comments