fixed pnpm issues
This commit is contained in:
parent
a85ac17bef
commit
73f6a321aa
1 changed files with 4 additions and 3 deletions
|
@ -11,8 +11,8 @@ import {
|
||||||
dialog,
|
dialog,
|
||||||
Menu,
|
Menu,
|
||||||
MenuItemConstructorOptions,
|
MenuItemConstructorOptions,
|
||||||
nativeTheme,
|
|
||||||
nativeImage,
|
nativeImage,
|
||||||
|
nativeTheme,
|
||||||
Tray
|
Tray
|
||||||
} from "electron";
|
} from "electron";
|
||||||
import { rm } from "fs/promises";
|
import { rm } from "fs/promises";
|
||||||
|
@ -21,6 +21,7 @@ import { IpcEvents } from "shared/IpcEvents";
|
||||||
import { isTruthy } from "shared/utils/guards";
|
import { isTruthy } from "shared/utils/guards";
|
||||||
import { once } from "shared/utils/once";
|
import { once } from "shared/utils/once";
|
||||||
import type { SettingsStore } from "shared/utils/SettingsStore";
|
import type { SettingsStore } from "shared/utils/SettingsStore";
|
||||||
|
|
||||||
import { ICON_PATH } from "../shared/paths";
|
import { ICON_PATH } from "../shared/paths";
|
||||||
import { createAboutWindow } from "./about";
|
import { createAboutWindow } from "./about";
|
||||||
import { initArRPC } from "./arrpc";
|
import { initArRPC } from "./arrpc";
|
||||||
|
@ -507,8 +508,8 @@ async function setTrayIcon(): Promise<undefined> {
|
||||||
cancelId: 2,
|
cancelId: 2,
|
||||||
icon: getTrayIcon()
|
icon: getTrayIcon()
|
||||||
});
|
});
|
||||||
if (userSelection.response == 2) return;
|
if (userSelection.response === 2) return;
|
||||||
if (userSelection.response == 1) {
|
if (userSelection.response === 1) {
|
||||||
Settings.store.trayIconPath = void 0;
|
Settings.store.trayIconPath = void 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue