diff --git a/ui/component/app/view.jsx b/ui/component/app/view.jsx index d6150edf2..c7ecf9475 100644 --- a/ui/component/app/view.jsx +++ b/ui/component/app/view.jsx @@ -4,6 +4,7 @@ import React, { useEffect, useRef, useState } from 'react'; import classnames from 'classnames'; import analytics from 'analytics'; import { buildURI, parseURI } from 'lbry-redux'; +import { SIMPLE_SITE } from 'config'; import Router from 'component/router/index'; import ModalRouter from 'modal/modalRouter'; import ReactModal from 'react-modal'; @@ -399,12 +400,12 @@ function App(props: Props) { {/* @if TARGET='web' */} - {!shouldHideNag && } + {!SIMPLE_SITE && !shouldHideNag && } {!shouldHideNag && } {(lbryTvApiStatus === STATUS_DEGRADED || lbryTvApiStatus === STATUS_FAILING) && !shouldHideNag && ( setLbryTvApiStatus(STATUS_OK)} /> )} - {lbryTvApiStatus === STATUS_OK && showAnalyticsNag && !shouldHideNag && ( + {!SIMPLE_SITE && lbryTvApiStatus === STATUS_OK && showAnalyticsNag && !shouldHideNag && ( )} {/* @endif */} diff --git a/ui/component/fileDescription/view.jsx b/ui/component/fileDescription/view.jsx index 3cacdeed1..d9a90b4bc 100644 --- a/ui/component/fileDescription/view.jsx +++ b/ui/component/fileDescription/view.jsx @@ -50,7 +50,7 @@ function FileDescription(props: Props) { -
+
{expanded ? (
} /> diff --git a/ui/page/channelsFollowing/view.jsx b/ui/page/channelsFollowing/view.jsx index 9cdff0831..df9259f72 100644 --- a/ui/page/channelsFollowing/view.jsx +++ b/ui/page/channelsFollowing/view.jsx @@ -1,7 +1,8 @@ // @flow import * as PAGES from 'constants/pages'; import * as ICONS from 'constants/icons'; -import { ORDER_BY_NEW } from 'constants/claim_search'; +import * as CS from 'constants/claim_search'; +import { SIMPLE_SITE } from 'config'; import React from 'react'; import ChannelsFollowingDiscoverPage from 'page/channelsFollowingDiscover'; import ClaimListDiscover from 'component/claimListDiscover'; @@ -23,6 +24,8 @@ function ChannelsFollowingPage(props: Props) { ) : ( @@ -30,8 +33,8 @@ function ChannelsFollowingPage(props: Props) { {__('Following')} } - defaultOrderBy={ORDER_BY_NEW} - channelIds={subscribedChannels.map(sub => sub.uri.split('#')[1])} + defaultOrderBy={CS.ORDER_BY_NEW} + channelIds={subscribedChannels.map((sub) => sub.uri.split('#')[1])} meta={