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