shell-mirror 1.5.89 → 1.5.90

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shell-mirror",
3
- "version": "1.5.89",
3
+ "version": "1.5.90",
4
4
  "description": "Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -420,9 +420,10 @@ class ShellMirrorDashboard {
420
420
 
421
421
  if (agentsData.success && agentsData.data && agentsData.data.agents) {
422
422
  this.agents = agentsData.data.agents;
423
-
424
- // Load session data from localStorage (persisted from terminal connections)
425
- this.loadSessionsFromStorage();
423
+
424
+ // Don't load stale sessions from localStorage - only show live sessions from agents
425
+ // Sessions will be populated via WebSocket updates from connected agents
426
+ localStorage.removeItem('shell-mirror-sessions'); // Clear any stale data
426
427
  } else {
427
428
  this.agents = [];
428
429
  }