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