fixing abbreviation error on load

This commit is contained in:
metacryst
2026-01-13 13:31:48 -06:00
parent b0953f44fa
commit 134a6b8471

View File

@@ -26,7 +26,9 @@ window.addEventListener("navigate", () => {
window.dispatchEvent(event) 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 () { window.selectedNetwork = function () {