From 4ab72e50b950a2b6db9862d5cae1dcac7d8b27f9 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Sat, 30 May 2026 06:39:33 +0000 Subject: [PATCH] Remove username from chat status bar --- public_html/index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public_html/index.html b/public_html/index.html index 3a0c44f..0f04d35 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -822,7 +822,7 @@ body::after{
- JARVIS v2.0 · -- · SECURITY LEVEL ALPHA + JARVIS v2.0 · SECURITY LEVEL ALPHA
@@ -931,7 +931,6 @@ document.getElementById('loginForm').addEventListener('submit', async (e) => { sessionUser = res.display_name; sessionStorage.setItem('jarvis_token', sessionToken); sessionStorage.setItem('jarvis_user', sessionUser); - document.getElementById('session-user').textContent = sessionUser.toUpperCase(); showApp(sessionUser, res.greeting); } else { errEl.textContent = 'ACCESS DENIED'; @@ -945,7 +944,6 @@ function showApp(name, greeting) { document.getElementById('loginScreen').style.display = 'none'; const app = document.getElementById('app'); app.style.display = 'flex'; - document.getElementById('session-user').textContent = (name||'').toUpperCase(); if (greeting) { addMessage('jarvis', greeting);