diff --git a/src/main/events/auth/open-auth-window.ts b/src/main/events/auth/open-auth-window.ts index e93a5a42..5b9a4055 100644 --- a/src/main/events/auth/open-auth-window.ts +++ b/src/main/events/auth/open-auth-window.ts @@ -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);