Fix user creation message formatting

This commit is contained in:
Jesse Wierzbinski 2023-11-20 14:02:20 -10:00
parent 5287ceb99e
commit 97af3bc2d0
No known key found for this signature in database

2
cli.ts
View file

@ -97,7 +97,7 @@ switch (command) {
console.log( console.log(
`${chalk.green(``)} Created user ${chalk.blue( `${chalk.green(``)} Created user ${chalk.blue(
newUser.username newUser.username
)}` )}${admin ? chalk.green(" (admin)") : ""}`
); );
break; break;
} }