diff --git a/src/views/ArticleDetail/AuthorSidebar/Collection/index.tsx b/src/views/ArticleDetail/AuthorSidebar/Collection/index.tsx index c7a0e857c0..e2d010acb8 100644 --- a/src/views/ArticleDetail/AuthorSidebar/Collection/index.tsx +++ b/src/views/ArticleDetail/AuthorSidebar/Collection/index.tsx @@ -107,25 +107,32 @@ const Collection = ({ article, collectionId }: CollectionProps) => { loader={} > - {edges?.map(({ node, cursor }, i) => ( - - { - analytics.trackEvent('click_feed', { - type: 'article_detail_author_sidebar_collection', - contentType: 'article', - location: i, - id: node.id, - }) - }} - /> - - ))} + {edges?.map( + ( + { node, cursor }, + i // TODO: find focus factor + ) => ( + + { + analytics.trackEvent('click_feed', { + type: 'article_detail_author_sidebar_collection', + contentType: 'article', + location: i, + id: node.id, + }) + }} + /> + + ) + )}