hedgequantx 1.2.139 → 1.2.140

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 +2 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "1.2.139",
3
+ "version": "1.2.140",
4
4
  "description": "Prop Futures Algo Trading CLI - Connect to Topstep, Alpha Futures, and other prop firms",
5
5
  "main": "src/app.js",
6
6
  "bin": {
package/src/app.js CHANGED
@@ -676,10 +676,8 @@ const dashboardMenu = async (service) => {
676
676
  console.log(chalk.cyan('║') + chalk.green(padLine(connText, W)) + chalk.cyan('║'));
677
677
  }
678
678
 
679
- if (user) {
680
- const userText = 'Welcome, ' + user.userName.toUpperCase() + '!';
681
- console.log(chalk.cyan('║') + chalk.white(padLine(userText, W)) + chalk.cyan('║'));
682
- }
679
+ const userText = 'Welcome, HQX Trader!';
680
+ console.log(chalk.cyan('') + chalk.white(padLine(userText, W)) + chalk.cyan(''));
683
681
 
684
682
  console.log(chalk.cyan('╠' + '═'.repeat(W) + '╣'));
685
683