We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87e6910 commit e193079Copy full SHA for e193079
src/utils/actor-card.ts
@@ -98,8 +98,8 @@ export function formatActorsListToActorCard(actors: (Actor | ExtendedActorStoreL
98
if (actors.length === 0) {
99
return [];
100
}
101
- return actors.map((actor, index) => {
+ return actors.map((actor) => {
102
const card = formatActorToActorCard(actor);
103
- return `${index + 1}. ${card}`;
+ return `- ${card}`;
104
});
105
0 commit comments