style: fix formatting in model-selection.ts

This commit is contained in:
senoldogann 2026-01-25 11:44:37 +02:00 committed by Peter Steinberger
parent f3991055fa
commit cdd82b4fa4

View File

@ -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 };
}