Temporarily remove tag filter on upcoming (will be added back soon)

This commit is contained in:
Dan Peterson 2021-12-29 11:37:23 -06:00 committed by Thomas Zarebczan
parent 563e6b2c2f
commit a8209ee38b

View file

@ -8,7 +8,7 @@ import { useIsMediumScreen, useIsLargeScreen } from 'effects/use-screensize';
import ClaimListDiscover from 'component/claimListDiscover'; import ClaimListDiscover from 'component/claimListDiscover';
import Button from 'component/button'; import Button from 'component/button';
import { LIVESTREAM_UPCOMING_BUFFER } from 'constants/livestream'; import { LIVESTREAM_UPCOMING_BUFFER } from 'constants/livestream';
import { SCHEDULED_LIVESTREAM_TAG } from 'constants/tags'; // import { SCHEDULED_LIVESTREAM_TAG } from 'constants/tags';
type Props = { type Props = {
channelIds: Array<string>, channelIds: Array<string>,
@ -41,7 +41,6 @@ const ScheduledStreams = (props: Props) => {
return ( return (
<div className={'mb-xl'} style={{ display: showUpcomingLivestreams ? 'block' : 'none' }}> <div className={'mb-xl'} style={{ display: showUpcomingLivestreams ? 'block' : 'none' }}>
<ClaimListDiscover <ClaimListDiscover
tags={[SCHEDULED_LIVESTREAM_TAG]}
useSkeletonScreen={false} useSkeletonScreen={false}
channelIds={channelIds} channelIds={channelIds}
limitClaimsPerChannel={limitClaimsPerChannel} limitClaimsPerChannel={limitClaimsPerChannel}