From 134a6b847138ba51c5a61428ec5fb3c31eddff51 Mon Sep 17 00:00:00 2001 From: metacryst Date: Tue, 13 Jan 2026 13:31:48 -0600 Subject: [PATCH] fixing abbreviation error on load --- ui/desktop/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/desktop/index.js b/ui/desktop/index.js index 451eceb..45a7e6e 100644 --- a/ui/desktop/index.js +++ b/ui/desktop/index.js @@ -26,7 +26,9 @@ window.addEventListener("navigate", () => { window.dispatchEvent(event) } - document.title = `${window.currentNetwork.abbreviation} | Parchment` + if(window.currentNetwork) { // 2 navigates fire on load: 1 initial, and one after the org redirect + document.title = `${window.currentNetwork.abbreviation} | Parchment` + } }) window.selectedNetwork = function () {