We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af9c57a commit 99d298cCopy full SHA for 99d298c
1 file changed
src/features/cards/components/customRssCard/CustomRssCard.tsx
@@ -9,7 +9,7 @@ export function CustomRssCard({ meta, withAds }: CardPropsType) {
9
const { data = [], isLoading } = useRssFeed({ feedUrl: meta.feedUrl || '' })
10
11
const renderItem = (item: Article, index: number) => (
12
- <ArticleItem item={item} key={`fcc-${index}`} index={index} analyticsTag={meta.analyticsTag} />
+ <ArticleItem item={item} key={`rcc-${index}`} index={index} analyticsTag={meta.analyticsTag} />
13
)
14
15
const HeaderTitle = () => {
0 commit comments