diff --git a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js index dc9111a..4aedb24 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js +++ b/src/trx-client/trx-frontend/trx-frontend-http/assets/web/app.js @@ -71,6 +71,11 @@ function showAuthGate(allowGuest = false) { document.getElementById("auth-gate").style.display = "block"; document.getElementById("tab-bar").style.display = "none"; + // Hide all tab panels + document.querySelectorAll(".tab-panel").forEach(panel => { + panel.style.display = "none"; + }); + // Show guest button if guest mode is available const guestBtn = document.getElementById("auth-guest-btn"); if (guestBtn) {