Skip to content

Commit d306e57

Browse files
jirispilkaCopilot
andauthored
Update src/tools/store_collection.ts
Co-authored-by: Copilot <[email protected]>
1 parent e193079 commit d306e57

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/tools/store_collection.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,12 @@ export const searchActors: ToolEntry = {
102102
const actorCards = formatActorsListToActorCard(actors);
103103
return {
104104
content: [
105-
{ type: 'text', text: `**Search query:** ${parsed.search}` },
106-
{ type: 'text', text: `**Number of Actors found:** ${actorCards.length}` },
107-
{ type: 'text', text: `**Actor cards:**\n${actorCards.join('\n\n')}` },
105+
{
106+
type: 'text',
107+
text: `**Search query:** ${parsed.search}\n\n` +
108+
`**Number of Actors found:** ${actorCards.length}\n\n` +
109+
`**Actor cards:**\n${actorCards.join('\n\n')}`
110+
},
108111
],
109112
};
110113
},

0 commit comments

Comments
 (0)