From 4152762cf95e5c14cce7b9b53cacb16da5561448 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 5 Mar 2021 13:07:44 +0200 Subject: [PATCH] Update src/renderer/bootstrap.tsx Add `await` keyword to debugger attachment Co-authored-by: chh <1474479+chenhunghan@users.noreply.github.com> Signed-off-by: Alex Culliere --- 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 db6807c841..aeb25c4647 100644 --- a/src/renderer/bootstrap.tsx +++ b/src/renderer/bootstrap.tsx @@ -87,4 +87,4 @@ export async function bootstrap(App: AppComponent) { // run bootstrap(process.isMainFrame ? LensApp : App); -attachChromeDebugger(); +await attachChromeDebugger();