mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-14 20:22:10 +00:00
ci: fix sentry variable
This commit is contained in:
parent
ec0439e41b
commit
05e4934f9f
1 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
|||
import { registerEvent } from "../register-event";
|
||||
import { WindowManager } from "@main/services";
|
||||
|
||||
const openAuthWindow = async (_event: Electron.IpcMainInvokeEvent) =>
|
||||
WindowManager.openAuthWindow();
|
||||
const openAuthWindow = async (_event: Electron.IpcMainInvokeEvent) => {
|
||||
throw new Error("sentry");
|
||||
};
|
||||
|
||||
registerEvent("openAuthWindow", openAuthWindow);
|
||||
|
|
Loading…
Reference in a new issue