Show dev tools always
This commit is contained in:
parent
aa81e14fed
commit
90d56f3886
1 changed files with 2 additions and 1 deletions
|
@ -25,7 +25,8 @@ export const createApplicationMenu = async (mainWindow: BrowserWindow) => {
|
|||
process.platform == "darwin" ? options : [];
|
||||
|
||||
const devOnly = (options: MenuItemConstructorOptions[]) =>
|
||||
isDev ? options : [];
|
||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||||
(isDev ?? true) ? options : [];
|
||||
|
||||
const handleCheckForUpdates = () => forceCheckForAppUpdates(mainWindow);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue