add null return to avoid having to check for undefined

This commit is contained in:
rafael-aero
2021-08-23 18:28:00 +02:00
parent fdbf7187b9
commit fb99dbd5b5
2 changed files with 2 additions and 0 deletions

View File

@@ -619,6 +619,7 @@ module.exports = (socket, app) => {
return element;
}
}
return null;
}
};
//# sourceMappingURL=browserWindows.js.map

View File

@@ -785,5 +785,6 @@ export = (socket: Socket, app: Electron.App) => {
return element;
}
}
return null;
}
};