hedgequantx 2.7.55 → 2.7.56

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/src/app.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.7.55",
3
+ "version": "2.7.56",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
package/src/app.js CHANGED
@@ -175,7 +175,9 @@ const run = async () => {
175
175
  await refreshStats();
176
176
  }
177
177
 
178
- // Don't stop spinner - console.clear() in dashboardMenu will remove it visually
178
+ // Clear spinner interval but don't erase the line visually
179
+ // dashboardMenu's console.clear() will handle the visual cleanup
180
+ spinner.stop();
179
181
 
180
182
  // Main loop
181
183
  while (true) {