From cdb129ea1edf54ea93385dcd27dcec5e7ac28576 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 26 Oct 2021 15:39:29 -0400 Subject: [PATCH] Fix build Signed-off-by: Sebastian Malton --- src/renderer/bootstrap.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/bootstrap.tsx b/src/renderer/bootstrap.tsx index e2d34879a6..d80512561a 100644 --- a/src/renderer/bootstrap.tsx +++ b/src/renderer/bootstrap.tsx @@ -69,7 +69,7 @@ type AppComponent = React.ComponentType & { }; export async function bootstrap(comp: () => Promise) { - AppPaths.init(); + await AppPaths.init(); const rootElem = document.getElementById("app"); await attachChromeDebugger();