This commit is contained in:
Josh Hawkins 2025-10-24 07:19:13 -05:00
parent 9ab5b2a0d7
commit a11768e4c4

View File

@ -359,19 +359,20 @@ function ReviewGroup({
{shouldFetchEvents && isValidating && !fetchedEvents ? ( {shouldFetchEvents && isValidating && !fetchedEvents ? (
<ActivityIndicator /> <ActivityIndicator />
) : ( ) : (
(fetchedEvents || []).map((event) => { (fetchedEvents || []).map((event, index) => {
return ( return (
<> <div
<div className="border-b border-secondary-highlight pb-0.5 last:border-0 last:pb-0"> key={`event-${event.id}-${index}`}
<EventList className="border-b border-secondary-highlight pb-0.5 last:border-0 last:pb-0"
key={event.id} >
event={event} <EventList
effectiveTime={effectiveTime} key={event.id}
onSeek={onSeek} event={event}
onOpenUpload={onOpenUpload} effectiveTime={effectiveTime}
/> onSeek={onSeek}
</div> onOpenUpload={onOpenUpload}
</> />
</div>
); );
}) })
)} )}