Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/utils/authenticate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ async function redirectToLocalStack() {
);
const redirectSearchParams = new URLSearchParams(redirectUri.query);

// 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("windowId", redirectSearchParams.get("windowId") ?? "");

Expand Down
1 change: 1 addition & 0 deletions src/utils/container-status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export async function createContainerStatusTracker(

return {
status() {
// biome-ignore lint/style/noNonNullAssertion: false positive
return status!;
},
onChange(callback) {
Expand Down
Loading