chore(lint): biome import order

This commit is contained in:
Peter Steinberger
2026-01-09 09:27:18 +01:00
parent 8dd2286e3e
commit 89132fdd25
8 changed files with 19 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
import {
cancel,
isCancel,
multiselect as clackMultiselect,
isCancel,
} from "@clack/prompts";
import { resolveApiKeyForProvider } from "../../agents/model-auth.js";
import {
@@ -288,7 +288,9 @@ export async function modelsScanCommand(
});
if (isCancel(selection)) {
cancel(stylePromptTitle("Model scan cancelled.") ?? "Model scan cancelled.");
cancel(
stylePromptTitle("Model scan cancelled.") ?? "Model scan cancelled.",
);
runtime.exit(0);
}