Browse Source

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

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

* docs: retain async
David Sanders 1 year ago
parent
commit
a22635bd9f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/api/session.md

+ 1 - 1
docs/api/session.md

@@ -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.