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: 1 addition & 1 deletion src/plugins/status-bar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default createPlugin(
);

context.subscriptions.push(
commands.registerCommand("localstack.refreshStatusBar", async () => {
commands.registerCommand("localstack.refreshStatusBar", () => {
const setupStatus = setupStatusTracker.status();

if (setupStatus === "setup_required") {
Expand Down
1 change: 1 addition & 0 deletions src/utils/localstack-status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export async function createLocalStackStatusTracker(

return {
status() {
// biome-ignore lint/style/noNonNullAssertion: false positive
return status!;
},
onChange(callback) {
Expand Down
1 change: 1 addition & 0 deletions src/utils/setup-status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export async function createSetupStatusTracker(

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