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 ? (
<ActivityIndicator />
) : (
(fetchedEvents || []).map((event) => {
(fetchedEvents || []).map((event, index) => {
return (
<>
<div className="border-b border-secondary-highlight pb-0.5 last:border-0 last:pb-0">
<div
key={`event-${event.id}-${index}`}
className="border-b border-secondary-highlight pb-0.5 last:border-0 last:pb-0"
>
<EventList
key={event.id}
event={event}
@ -371,7 +373,6 @@ function ReviewGroup({
onOpenUpload={onOpenUpload}
/>
</div>
</>
);
})
)}