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.
- package/package.json +1 -1
- package/src/app.js +2 -4
package/package.json
CHANGED
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
|
-
|
|
680
|
-
|
|
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
|
|