Skip to content

Commit

Permalink
Changed div key from talk.session to talk.time
Browse files Browse the repository at this point in the history
  • Loading branch information
SahilDahekar committed Nov 12, 2024
1 parent 583562b commit e5458dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Agenda/agenda.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function Agenda({ city }) {

<div className='mt-[40px]'>
{city.agenda.map((talk) => {
return <div key={talk.session} className={`flex sm:flex-col justify-between mt-[50px] ${!talk.speaker && 'countdown-text-gradient'}`}>
return <div key={talk.time} className={`flex sm:flex-col justify-between mt-[50px] ${!talk.speaker && 'countdown-text-gradient'}`}>
<Paragraph typeStyle='body-md'>
{talk.time}
</Paragraph>
Expand Down

0 comments on commit e5458dc

Please sign in to comment.