Skip to content

Commit 2547699

Browse files
committed
Add comment
1 parent c3e1f27 commit 2547699

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

packages/component/src/Middleware/ActivityGrouping/ui/RenderActivityGrouping.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ const RenderActivityGrouping = (props: RenderActivityGroupingProps) => {
2828
{activities.map(activity => {
2929
const children = activityRendererMap.get(activity)?.({});
3030

31+
// TODO: [P0] Activity key can be reused by multiple activities of same livestream group.
32+
// We should update ActivityKeyer to have another more unique ID.
3133
return children && <Fragment key={getKeyByActivity(activity)}>{children}</Fragment>;
3234
})}
3335
</Fragment>

0 commit comments

Comments
 (0)