default fee amount to undefined (don't pass)
>= (and =) are having a filtering issue with reposts. Don't need to pass >= for all content - I think this was some old hackaround that's no longer required.
This commit is contained in:
parent
ec745c31de
commit
294c5194a4
2 changed files with 2 additions and 2 deletions
|
@ -171,7 +171,7 @@ function ChannelContent(props: Props) {
|
|||
streamType={SIMPLE_SITE ? CS.CONTENT_ALL : undefined}
|
||||
channelIds={[claimId]}
|
||||
claimType={claimType}
|
||||
feeAmount={CS.FEE_AMOUNT_ANY}
|
||||
feeAmount={undefined}
|
||||
defaultOrderBy={CS.ORDER_BY_NEW}
|
||||
pageSize={dynamicPageSize}
|
||||
infiniteScroll={defaultInfiniteScroll}
|
||||
|
|
|
@ -260,7 +260,7 @@ function DiscoverPage(props: Props) {
|
|||
// TODO: find a better way to determine discover / wild west vs other modes release times
|
||||
// for now including && !tags so that
|
||||
releaseTime={getReleaseTime()}
|
||||
feeAmount={isWildWest || tags ? CS.FEE_AMOUNT_ANY : undefined}
|
||||
feeAmount={undefined}
|
||||
channelIds={channelIds}
|
||||
excludedChannelIds={excludedChannelIds}
|
||||
limitClaimsPerChannel={
|
||||
|
|
Loading…
Reference in a new issue