This commit is contained in:
Jordan Tucker 2024-02-19 01:44:33 -08:00
Родитель e12d1f03d0
Коммит 636e8bcdb0
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -75,14 +75,14 @@ app.whenReady().then(() => {
You must not use a top-level `await` with the app's `whenReady` promise. Doing so will cause the app to hang.
Instead, use the promise's `then` function.
```js
```js @ts-nocheck
// Works ✅
app.whenReady().then(() => {
console.log('The app is ready')
})
// Hangs ❌
await app.whenReady();
await app.whenReady()
console.log('The app is ready')
```