We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 212c465 commit af9c57aCopy full SHA for af9c57a
1 file changed
src/features/cards/components/customRssCard/CustomRssCard.tsx
@@ -1,4 +1,4 @@
1
-import { Card, FloatingFilter } from 'src/components/Elements'
+import { Card } from 'src/components/Elements'
2
import { ListComponent } from 'src/components/List'
3
import { Article, CardPropsType } from 'src/types'
4
import { useRssFeed } from '../../api/getRssFeed'
@@ -24,7 +24,6 @@ export function CustomRssCard({ meta, withAds }: CardPropsType) {
24
<Card
25
card={{ ...meta, icon: <CardIcon url={meta.icon as string} /> }}
26
titleComponent={<HeaderTitle />}>
27
- <FloatingFilter card={meta} filters={['language']} />
28
<ListComponent items={data} isLoading={isLoading} renderItem={renderItem} withAds={withAds} />
29
</Card>
30
)
0 commit comments