diff --git a/ui/page/tagsFollowing/index.js b/ui/page/tagsFollowing/index.js index 42906ccaec5..7d03ef6bc89 100644 --- a/ui/page/tagsFollowing/index.js +++ b/ui/page/tagsFollowing/index.js @@ -3,11 +3,14 @@ import { selectFollowedTags } from 'redux/selectors/tags'; import { selectUserVerifiedEmail } from 'redux/selectors/user'; import { selectSubscriptions } from 'redux/selectors/subscriptions'; import DiscoverPage from './view'; +import { makeSelectClientSetting } from 'redux/selectors/settings'; +import { SETTINGS } from 'lbry-redux'; const select = state => ({ followedTags: selectFollowedTags(state), subscribedChannels: selectSubscriptions(state), email: selectUserVerifiedEmail(state), + tileLayout: makeSelectClientSetting(SETTINGS.TILE_LAYOUT)(state), }); const perform = {}; diff --git a/ui/page/tagsFollowing/view.jsx b/ui/page/tagsFollowing/view.jsx index fe19b1e14ec..f056f57e719 100644 --- a/ui/page/tagsFollowing/view.jsx +++ b/ui/page/tagsFollowing/view.jsx @@ -8,7 +8,13 @@ import Button from 'component/button'; import Icon from 'component/common/icon'; import * as CS from 'constants/claim_search'; -function TagsFollowingPage() { +type Props = { + tileLayout: boolean, +}; + +function TagsFollowingPage(props: Props) { + const { tileLayout } = props; + return (