docs: update example to use app.whenReady() (#38337)

* docs: update example to use app.whenReady()

* docs: retain async
This commit is contained in:
David Sanders 2023-05-17 10:32:59 -07:00 committed by GitHub
parent 683235daf0
commit a22635bd9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1390,7 +1390,7 @@ extension to be loaded.
const { app, session } = require('electron')
const path = require('path')
app.on('ready', async () => {
app.whenReady().then(async () => {
await session.defaultSession.loadExtension(
path.join(__dirname, 'react-devtools'),
// allowFileAccess is required to load the devtools extension on file:// URLs.