We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad32d32 commit 2ed715dCopy full SHA for 2ed715d
1 file changed
src/plugins/status-bar.ts
@@ -88,7 +88,11 @@ export default createPlugin(
88
);
89
90
// Skip rendering the status bar if any of the status checks is not ready.
91
- if (setupStatus === undefined || cliStatus === undefined) {
+ if (
92
+ setupStatus === undefined ||
93
+ localStackStatus === undefined ||
94
+ cliStatus === undefined
95
+ ) {
96
return;
97
}
98
0 commit comments