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

View File

@ -359,10 +359,12 @@ 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}`}
className="border-b border-secondary-highlight pb-0.5 last:border-0 last:pb-0"
>
<EventList <EventList
key={event.id} key={event.id}
event={event} event={event}
@ -371,7 +373,6 @@ function ReviewGroup({
onOpenUpload={onOpenUpload} onOpenUpload={onOpenUpload}
/> />
</div> </div>
</>
); );
}) })
)} )}