Skip to content

Commit

Permalink
Fix speaker links
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTim committed Oct 2, 2024
1 parent 787ca0f commit 4119098
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/Conference/Components/Videos.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct Videos: Component {
for speaker in talk.speakers {
ListItem {
H4 {
Link(speaker.name, url: "/speakers/\(speaker.name)/")
Link(speaker.name, url: "/speakers/\(speaker.url)/")
}.class("f-weight-300")
}
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/Conference/Models/Speaker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ struct AllSpeakers {
name: "Babeth Velghe",
role: "Student",
bio: "A student with a passion for coding, who recently delved into Swift programming. For her bachelor thesis, she explored the Swift OpenAPI Generator.",
talkIDs: [16]),
talkIDs: [6]),
Speaker(
name: "Franz Busch",
role: "Software Engineer",
Expand Down

0 comments on commit 4119098

Please sign in to comment.