We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 819f3ee commit 7ef8bfeCopy full SHA for 7ef8bfe
1 file changed
website/app/routes/api.speakers.ts
@@ -4,6 +4,9 @@ export async function loader({ context }: Route.ActionArgs) {
4
const speakersWithTalks = await context.queryClient.getSpeakersWithTalks();
5
const data = speakersWithTalks.speakers.map((speaker) => ({
6
name: speaker.name,
7
+ title: speaker.title,
8
+ link: speaker.socials.linkedinUrl || speaker.socials.twitterUrl || speaker.socials.blueskyUrl,
9
+
10
}));
11
return Response.json({ success: true, data });
-}
12
+}
0 commit comments