Merge pull request #3996 from lbryio/test-noSidebarAds

comment out sidebar ads for test
This commit is contained in:
jessopb 2020-04-15 12:46:27 -04:00 committed by GitHub
commit 0bd1421a0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ import StickyBox from 'react-sticky-box/dist/esnext';
import Spinner from 'component/spinner';
import usePersistedState from 'effects/use-persisted-state';
// @if TARGET='web'
import Ads from 'lbrytv/component/ads';
// import Ads from 'lbrytv/component/ads';
// @endif
const SHOW_CHANNELS = 'SHOW_CHANNELS';
@ -210,7 +210,7 @@ function SideNavigation(props: Props) {
)}
</nav>
// @if TARGET='web'
{!isAuthenticated && !expanded && <Ads />}
{/* {!isAuthenticated && !expanded && <Ads />} commenting out sidebar ads for test */}
// @endif
</Wrapper>
);