From d293b8082952387b162549d53243da682dd149eb Mon Sep 17 00:00:00 2001 From: Agampreet Singh <68941022+agam778@users.noreply.github.com> Date: Sat, 22 Mar 2025 14:43:34 +0530 Subject: [PATCH] Update Home URL in menu The Home option will now load the custom home page set by the user (if any) --- app/config/menu.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/config/menu.js b/app/config/menu.js index 9b81b41..ee55600 100644 --- a/app/config/menu.js +++ b/app/config/menu.js @@ -676,7 +676,9 @@ const menulayout = [ { label: "Home", click: () => { - BrowserWindow.getFocusedWindow().loadURL(`${getValue("enterprise-or-normal")}`); + BrowserWindow.getFocusedWindow().loadURL( + `https://microsoft365.com/${getValue("custompage")}/${getValue("enterpriseOrNormal")}` + ); }, }, ],