Fix wrong href

This commit is contained in:
Vencislav Atanasov 2024-09-26 20:12:24 +03:00
parent 4e68064e02
commit 3854bc0507
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ export default function Schedule({
{<>
<div className="grid members">
{speakers.map(speaker => <div key={speaker.id} className="col4 wmember">
<a href={'#'.concat(speaker.id)}>
<a href={'#speaker-'.concat(speaker.id)}>
<img width="100" height="100" src={speaker.picture} alt={speaker.name} />
</a>
</div>)}