ci: fix sentry variable

This commit is contained in:
Chubby Granny Chaser 2024-06-28 22:01:42 +01:00
parent 05e4934f9f
commit 8eca067aed
No known key found for this signature in database

View file

@ -1,8 +1,7 @@
import { registerEvent } from "../register-event";
import { WindowManager } from "@main/services";
const openAuthWindow = async (_event: Electron.IpcMainInvokeEvent) => {
throw new Error("sentry");
};
const openAuthWindow = async (_event: Electron.IpcMainInvokeEvent) =>
WindowManager.openAuthWindow();
registerEvent("openAuthWindow", openAuthWindow);