File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export default createPlugin(
7979 ) ;
8080
8181 context . subscriptions . push (
82- commands . registerCommand ( "localstack.refreshStatusBar" , async ( ) => {
82+ commands . registerCommand ( "localstack.refreshStatusBar" , ( ) => {
8383 const setupStatus = setupStatusTracker . status ( ) ;
8484
8585 if ( setupStatus === "setup_required" ) {
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ export async function createLocalStackStatusTracker(
5050
5151 return {
5252 status ( ) {
53+ // biome-ignore lint/style/noNonNullAssertion: false positive
5354 return status ! ;
5455 } ,
5556 onChange ( callback ) {
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ export async function createSetupStatusTracker(
3535
3636 return {
3737 status ( ) {
38+ // biome-ignore lint/style/noNonNullAssertion: false positive
3839 return status ! ;
3940 } ,
4041 onChange ( callback ) {
You can’t perform that action at this time.
0 commit comments