ninja-terminals 2.3.5 → 2.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/app.js +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ninja-terminals",
3
- "version": "2.3.5",
3
+ "version": "2.3.6",
4
4
  "description": "MCP server for multi-terminal Claude Code orchestration with DAG task management, parallel execution, and self-improvement",
5
5
  "main": "server.js",
6
6
  "bin": {
package/public/app.js CHANGED
@@ -193,9 +193,8 @@ const auth = {
193
193
  // ── Auth UI ──────────────────────────────────────────────────
194
194
 
195
195
  function showAuthOverlay() {
196
- const overlay = document.getElementById('auth-overlay');
197
- overlay.classList.remove('hidden');
198
- document.getElementById('login-email').focus();
196
+ // Auth disabled - app is free, never show auth overlay
197
+ return;
199
198
  }
200
199
 
201
200
  function hideAuthOverlay() {