1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Update src/renderer/bootstrap.tsx

Co-authored-by: chh <1474479+chenhunghan@users.noreply.github.com>
Signed-off-by: Alex Culliere <alozhkin@mirantis.com>
This commit is contained in:
Alex 2021-03-05 13:32:25 +02:00 committed by Alex Culliere
parent 4152762cf9
commit fe26fa33a8

View File

@ -27,7 +27,7 @@ import { themeStore } from "./theme.store";
*/ */
async function attachChromeDebugger() { async function attachChromeDebugger() {
if (remote.process.defaultApp) { if (remote.process.defaultApp) {
await new Promise(r => setTimeout(r, 1000)); await new Promise(resolve => setTimeout(resolve, 1000));
} }
} }