We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb6a33 commit 1b77dd6Copy full SHA for 1b77dd6
1 file changed
src/features/feed/components/Feed.tsx
@@ -74,15 +74,12 @@ export const Feed = () => {
74
return (
75
<div ref={rootRef} className="feed scrollable" style={{ overflow: 'auto', maxHeight: '100%' }}>
76
{(feed?.pages.flatMap((page) => page.data) || []).map((article, index) => {
77
- {
78
- /* TODO: fix analytics tag */
79
- }
80
81
<FeedItem
82
item={article}
83
key={article.id}
84
index={index}
85
- analyticsTag={'test'}
+ analyticsTag={'feed'}
86
className="feedItem"
87
/>
88
)
0 commit comments