fix(cli): resolve double rendering in shpool and address vscode lint warnings (#18704)

This commit is contained in:
Brad Dux
2026-02-11 09:29:18 -08:00
committed by GitHub
parent 34a47a51f4
commit 0080589939
4 changed files with 50 additions and 40 deletions

View File

@@ -363,7 +363,9 @@ export const AppContainer = (props: AppContainerProps) => {
(async () => {
// Note: the program will not work if this fails so let errors be
// handled by the global catch.
await config.initialize();
if (!config.isInitialized()) {
await config.initialize();
}
setConfigInitialized(true);
startupProfiler.flush(config);