From 0a509d2bc3052709d03e07c9c22969630ff3a146 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Mon, 23 Mar 2026 19:01:26 +0530 Subject: [PATCH] style: lint fix --- src/cli.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/cli.ts b/src/cli.ts index 266c805..8df6a5b 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -1,11 +1,11 @@ #!/usr/bin/env bun +import chalk from "chalk"; import { Command } from "commander"; import pkg from "../package.json"; import { cleanupMultiModel } from "./core/cleanup"; import { closeMultiModel } from "./core/close"; import { openMultiModel } from "./core/open"; import { getBinaryName, loadSettings, promptUser } from "./core/utils"; -import chalk from "chalk"; const program = new Command(); @@ -46,7 +46,10 @@ program const answer = await promptUser( `Continue with last used models?\n${modelList}\n(Y/n): `, ); - if (answer.toLowerCase() === "y" || answer.toLowerCase() === "yes") { + if ( + answer.toLowerCase() === "y" || + answer.toLowerCase() === "yes" + ) { models = settings.lastModels; } } else {