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 d8fd696 commit b0ab6cbCopy full SHA for b0ab6cb
src/components/schedule/speakers.astro
@@ -20,7 +20,7 @@ const speakers = Astro.props.speakers
20
21
{
22
speakers.map((speaker, index) => (
23
- <a href={`/speaker/${speaker.slug}`} class="inline">
+ <a href={`/speaker/${speaker.id}`} class="inline">
24
{speaker.data.name}
25
{index < speakers.length - 1 ? ", " : ""}
26
</a>
src/components/session-speakers.astro
@@ -21,7 +21,7 @@ const speakers = await getEntries(
<span class="inline">
- <a href={`/speaker/${speaker.slug}`} class="underline">
+ <a href={`/speaker/${speaker.id}`} class="underline">
27
0 commit comments