ci: fix sentry variable

This commit is contained in:
Chubby Granny Chaser 2024-06-28 21:47:27 +01:00
parent ec0439e41b
commit 05e4934f9f
No known key found for this signature in database

View file

@ -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);