From 05e4934f9f3b02f72bf7cba9f3380b31edd2fce0 Mon Sep 17 00:00:00 2001 From: Chubby Granny Chaser Date: Fri, 28 Jun 2024 21:47:27 +0100 Subject: [PATCH] ci: fix sentry variable --- src/main/events/auth/open-auth-window.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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);