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 8ced025 commit 7101e7aCopy full SHA for 7101e7a
cloud/functions/src/models/Event.ts
@@ -51,7 +51,15 @@ export function detailedTalksToSpeakersLineup(talks: DetailedTalk[]): LineupSpea
51
start: talk.allocation.start,
52
end: talk.allocation.end,
53
} : null,
54
- otherSpeakers: talk.speakers.filter(sp => sp.id !== speaker.id),
+ otherSpeakers: talk.speakers.filter(sp => sp.id !== speaker.id)
55
+ .map(speaker => ({
56
+ id: speaker.id,
57
+ fullName: speaker.fullName,
58
+ photoUrl: speaker.photoUrl,
59
+ companyName: speaker.companyName,
60
+ bio: speaker.bio,
61
+ social: speaker.social,
62
+ })),
63
})
64
65
}
0 commit comments