Skip to content

Commit e193079

Browse files
jirispilkaCopilot
andauthored
Update src/utils/actor-card.ts
Co-authored-by: Copilot <[email protected]>
1 parent 87e6910 commit e193079

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/actor-card.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ export function formatActorsListToActorCard(actors: (Actor | ExtendedActorStoreL
9898
if (actors.length === 0) {
9999
return [];
100100
}
101-
return actors.map((actor, index) => {
101+
return actors.map((actor) => {
102102
const card = formatActorToActorCard(actor);
103-
return `${index + 1}. ${card}`;
103+
return `- ${card}`;
104104
});
105105
}

0 commit comments

Comments
 (0)