Skip to content

Commit 82d53ae

Browse files
removed space in banner from tag line
1 parent 041209a commit 82d53ae

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/utils/banner.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const BANNER = [
1919
"╚═╝╚═╝╚═╝ ╩ ╚═╝╚═╝╩╚═╩ ╩╩ ╚═╝",
2020
];
2121

22-
const TAGLINE = " made with ♥ from scrapegraphai team";
22+
const TAGLINE = "made with ♥ from scrapegraphai team";
2323

2424
const BANNER_COLOR = "#bd93f9";
2525

@@ -30,5 +30,8 @@ export function showBanner() {
3030
console.log(text);
3131
console.log(chalk.hex(BANNER_COLOR)(TAGLINE));
3232
console.log(chalk.hex(BANNER_COLOR)(`v${getVersion()}`));
33+
if (process.env.JUST_SCRAPE_API_URL) {
34+
console.log(chalk.yellow(`→ Custom API: ${process.env.JUST_SCRAPE_API_URL}`));
35+
}
3336
console.log();
3437
}

0 commit comments

Comments
 (0)