diff --git a/src/createClient.ts b/src/createClient.ts index 8828460..59ce97d 100644 --- a/src/createClient.ts +++ b/src/createClient.ts @@ -19,8 +19,7 @@ export async function createClient(logger: SimpleLogger) { To start the server, run the following command: - ${chalk.yellow("lms server start ")} - + ${chalk.yellow("lms server start ")}${"\n"} `, ); process.exit(1); diff --git a/src/subcommands/load.ts b/src/subcommands/load.ts index 4a746da..95ff034 100644 --- a/src/subcommands/load.ts +++ b/src/subcommands/load.ts @@ -152,7 +152,7 @@ export const load = command({ Note, you need to provide the full model path. For example: - ${chalk.yellowBright(`lms load --exact "${chalk.yellow(shortestName)}"`)}${"\n"} + ${chalk.yellowBright(`lms load --exact "${chalk.yellow(shortestName)}"`)} `, ).message, ); @@ -205,7 +205,7 @@ export const load = command({ To select a model interactively, remove the ${chalk.yellowBright("--yes")} flag: - ${chalk.yellowBright("lms load")}${"\n"} + ${chalk.yellowBright("lms load")} `, ).message, ); diff --git a/src/subcommands/unload.ts b/src/subcommands/unload.ts index 65d9a09..a7026ef 100644 --- a/src/subcommands/unload.ts +++ b/src/subcommands/unload.ts @@ -83,7 +83,7 @@ export const unload = command({ To see a list of loaded models, run: - ${chalk.yellowBright("lms ps")}${"\n"} + ${chalk.yellowBright("lms ps")} `, ).message, );