Skip to content

Commit f513c7a

Browse files
address comments
Signed-off-by: Adhitya Mamallan <[email protected]>
1 parent 23683ec commit f513c7a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/views/workflow-history-v2/workflow-history-event-group/__tests__/workflow-history-event-group.test.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,6 @@ function setup({
582582
render(
583583
<WorkflowHistoryEventGroup
584584
eventGroup={eventGroup}
585-
groupId={eventGroup.firstEventId ?? ''}
586585
selected={selected}
587586
workflowCloseTimeMs={workflowCloseTimeMs}
588587
workflowCloseStatus={workflowCloseStatus}

src/views/workflow-history-v2/workflow-history-grouped-table/workflow-history-grouped-table.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,9 @@ export default function WorkflowHistoryGroupedTable({
5151
behavior: 'auto',
5252
},
5353
})}
54-
itemContent={(_, [groupId, group]) => (
54+
itemContent={(_, [__, group]) => (
5555
<WorkflowHistoryEventGroup
5656
eventGroup={group}
57-
groupId={groupId}
5857
getIsEventExpanded={getIsEventExpanded}
5958
toggleIsEventExpanded={toggleIsEventExpanded}
6059
showLoadingMoreEvents={

0 commit comments

Comments
 (0)