Skip to content

Commit

Permalink
Merge branch 'master' into add/feat-add-render
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmit-coder authored Nov 27, 2024
2 parents cecce7a + e244ad9 commit 119465e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
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
4 changes: 3 additions & 1 deletion config/city-lists.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
],
"ticket": false,
"isFree": true,
"ended": true
"ended": true,
"recordings": "https://www.youtube.com/playlist?list=PLbi1gRlP7pijItMBmw9SeeyWxuEa3jLR2",
"playlist": "https://www.youtube.com/embed/videoseries?list=PLbi1gRlP7pijItMBmw9SeeyWxuEa3jLR2"

},
{
Expand Down

0 comments on commit 119465e

Please sign in to comment.