From cdd82b4fa49bce2e8da53aae9759c14c2c8721e2 Mon Sep 17 00:00:00 2001 From: senoldogann Date: Sun, 25 Jan 2026 11:44:37 +0200 Subject: [PATCH] style: fix formatting in model-selection.ts --- src/agents/model-selection.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/agents/model-selection.ts b/src/agents/model-selection.ts index 5a672c581..78b0ddac8 100644 --- a/src/agents/model-selection.ts +++ b/src/agents/model-selection.ts @@ -140,8 +140,7 @@ export function resolveConfiguredModelRef(params: { // Default to anthropic if no provider is specified, but warn as this is deprecated. console.warn( - `[clawdbot] Model "${trimmed}" specified without provider. Falling back to "anthropic/${trimmed}". ` + - `Please use "anthropic/${trimmed}" in your config.`, + `[clawdbot] Model "${trimmed}" specified without provider. Falling back to "anthropic/${trimmed}". Please use "anthropic/${trimmed}" in your config.`, ); return { provider: "anthropic", model: trimmed }; }