Minor cleanup.

This commit is contained in:
Patrick Fic
2025-04-09 12:19:32 -07:00
parent b765a9262d
commit 1404ad6052
18 changed files with 210 additions and 119 deletions

View File

@@ -64,7 +64,11 @@ const ipcMainHandleAuthStateChanged = async (
};
const ipMainHandleResetPassword = async (): Promise<void> => {
shell.openExternal("https://imex.online/resetpassword");
shell.openExternal(
import.meta.env.VITE_COMPANY === "IMEX"
? "https://imex.online/resetpassword"
: "https://romeonline.io/resetpassword",
);
};
export { ipcMainHandleAuthStateChanged, ipMainHandleResetPassword };