We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lint/style/noNonNullAssertion
1 parent 304f1f4 commit 20e4b00Copy full SHA for 20e4b00
src/utils/authenticate.ts
@@ -60,6 +60,7 @@ async function redirectToLocalStack() {
60
);
61
const redirectSearchParams = new URLSearchParams(redirectUri.query);
62
63
+ // biome-ignore lint/style/noNonNullAssertion: false positive
64
const url = new URL(process.env.LOCALSTACK_WEB_AUTH_REDIRECT!);
65
url.searchParams.set("windowId", redirectSearchParams.get("windowId") ?? "");
66
src/utils/container-status.ts
@@ -40,6 +40,7 @@ export async function createContainerStatusTracker(
40
41
return {
42
status() {
43
44
return status!;
45
},
46
onChange(callback) {
0 commit comments