We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1a91e9 commit f9855f2Copy full SHA for f9855f2
1 file changed
src/app/day/2026/components/past-speakers.tsx
@@ -119,13 +119,17 @@ export function PastSpeakersSection() {
119
</div>
120
<div className="flex flex-col overflow-hidden">
121
<Marquee speed={25} speedOnHover={12} gap={0}>
122
- {ROW_1.map(s => (
123
- <PastSpeakerCard key={s.name} {...s} />
+ {ROW_1.map((s, i) => (
+ <PastSpeakerCard key={`${s.name}-${i}`} {...s} />
124
))}
125
</Marquee>
126
<Marquee speed={25} speedOnHover={12} gap={0} reverse>
127
- {ROW_2.map(s => (
128
- <PastSpeakerCard key={s.name} {...s} className="border-t-0" />
+ {ROW_2.map((s, i) => (
+ <PastSpeakerCard
129
+ key={`${s.name}-${i}`}
130
+ {...s}
131
+ className="border-t-0"
132
+ />
133
134
135
0 commit comments