seeclaudecode 1.0.1 → 1.0.2

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 +3 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seeclaudecode",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Real-time visualization of repository structure - watch Claude Code edit your codebase",
5
5
  "main": "server.js",
6
6
  "type": "module",
package/public/app.js CHANGED
@@ -491,10 +491,6 @@ class SeeClaude {
491
491
  };
492
492
 
493
493
  positionNode(this.structure, 0, 0, 50);
494
-
495
- // Reset pan
496
- this.panX = 0;
497
- this.panY = 0;
498
494
  }
499
495
 
500
496
  getNodeType(node) {
@@ -943,6 +939,9 @@ class SeeClaude {
943
939
  this.panY = 0;
944
940
  this.updateGraphTransform();
945
941
  });
942
+
943
+ // Apply saved transform
944
+ this.updateGraphTransform();
946
945
  }
947
946
 
948
947
  getNodeIcon(type) {