Skip to content

Commit b6a9ee4

Browse files
jsonbaileyclaude
andcommitted
fix: format warn call to satisfy prettier
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3bdde40 commit b6a9ee4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/sdk/server-ai/src/api/config/LDAIConfigUtils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ export class LDAIConfigUtils {
183183
Array.isArray(toolValue) ||
184184
typeof (toolValue as { name?: unknown }).name !== 'string'
185185
) {
186-
logger?.warn(`LaunchDarkly AI: Skipping tool "${toolName}" in model.parameters.tools: expected an object with a name string`);
186+
logger?.warn(
187+
`LaunchDarkly AI: Skipping tool "${toolName}" in model.parameters.tools: expected an object with a name string`,
188+
);
187189
continue;
188190
}
189191
result[toolName] = toolValue as LDTool;

0 commit comments

Comments
 (0)