Always show new session button

This commit is contained in:
andrepimenta
2025-06-21 00:39:53 +01:00
parent 1f4b320a0d
commit 1dca03a3ec
2 changed files with 6 additions and 1 deletions

View File

@@ -1493,7 +1493,9 @@ const html = `<!DOCTYPE html>
if (sessionStatus && newSessionBtn) {
// sessionInfo.style.display = 'none';
sessionStatus.style.display = 'none';
newSessionBtn.style.display = 'none';
// Always show new session
newSessionBtn.style.display = 'block';
// Keep history button visible - don't hide it
if (historyBtn) historyBtn.style.display = 'block';
}