diff --git a/public/compiled-lang/en.json b/public/compiled-lang/en.json index 1bdbfc758..e4c370560 100644 --- a/public/compiled-lang/en.json +++ b/public/compiled-lang/en.json @@ -1341,12 +1341,6 @@ "value": "Conferences" } ], - "discoverCollections_featuredCollectionHeading": [ - { - "type": 0, - "value": "Featured Collection" - } - ], "discoverCollections_storySeasonsHeading": [ { "type": 0, diff --git a/public/lang/en.json b/public/lang/en.json index fade17e90..bc3b603f6 100644 --- a/public/lang/en.json +++ b/public/lang/en.json @@ -630,9 +630,6 @@ "discoverCollections_conferencesHeading": { "string": "Conferences" }, - "discoverCollections_featuredCollectionHeading": { - "string": "Featured Collection" - }, "discoverCollections_storySeasonsHeading": { "string": "Stories" }, diff --git a/src/containers/discover/collections.tsx b/src/containers/discover/collections.tsx index 271e0b50e..5df739394 100644 --- a/src/containers/discover/collections.tsx +++ b/src/containers/discover/collections.tsx @@ -1,8 +1,6 @@ import React from 'react'; import { FormattedMessage } from 'react-intl'; -import LineHeading from '~components/atoms/lineHeading'; -import CardFavoriteEntity from '~components/molecules/card/favoriteEntity'; import Audiobooks from '~src/components/organisms/cardSlider/section/audiobooks'; import Conferences from '~src/components/organisms/cardSlider/section/conferences'; import Presenters from '~src/components/organisms/cardSlider/section/presenters'; @@ -13,34 +11,15 @@ import StorySeasons from '~src/components/organisms/cardSlider/section/storySeas import Topics from '~src/components/organisms/cardSlider/section/topics'; import { GetDiscoverCollectionsPageDataQuery } from './__generated__/collections'; -import styles from './collections.module.scss'; export type IDiscoverCollectionsProps = GetDiscoverCollectionsPageDataQuery; -export default function DiscoverCollections({ - websiteFeaturedCollection, -}: IDiscoverCollectionsProps): JSX.Element { +export default function DiscoverCollections(): JSX.Element { return (
- {websiteFeaturedCollection && ( - <> - - - -
- -
- - )} - + -
); }