Remove channelName prop
This commit is contained in:
parent
c16fb8c906
commit
e4db2d401b
1 changed files with 0 additions and 2 deletions
|
@ -130,7 +130,6 @@ function VideoViewer(props: Props) {
|
||||||
const adApprovedChannelIds = homepageData ? getAllIds(homepageData) : [];
|
const adApprovedChannelIds = homepageData ? getAllIds(homepageData) : [];
|
||||||
const claimId = claim && claim.claim_id;
|
const claimId = claim && claim.claim_id;
|
||||||
const channelClaimId = claim && claim.signing_channel && claim.signing_channel.claim_id;
|
const channelClaimId = claim && claim.signing_channel && claim.signing_channel.claim_id;
|
||||||
const channelName = claim && claim.signing_channel && claim.signing_channel.name;
|
|
||||||
const isAudio = contentType.includes('audio');
|
const isAudio = contentType.includes('audio');
|
||||||
const forcePlayer = FORCE_CONTENT_TYPE_PLAYER.includes(contentType);
|
const forcePlayer = FORCE_CONTENT_TYPE_PLAYER.includes(contentType);
|
||||||
const {
|
const {
|
||||||
|
@ -497,7 +496,6 @@ function VideoViewer(props: Props) {
|
||||||
autoplay={!embedded || autoplayIfEmbedded}
|
autoplay={!embedded || autoplayIfEmbedded}
|
||||||
claimId={claimId}
|
claimId={claimId}
|
||||||
title={claim && ((claim.value && claim.value.title) || claim.name)}
|
title={claim && ((claim.value && claim.value.title) || claim.name)}
|
||||||
channelName={channelName}
|
|
||||||
channelTitle={channelTitle}
|
channelTitle={channelTitle}
|
||||||
userId={userId}
|
userId={userId}
|
||||||
allowPreRoll={!authenticated} // TODO: pull this into ads functionality so it's self contained
|
allowPreRoll={!authenticated} // TODO: pull this into ads functionality so it's self contained
|
||||||
|
|
Loading…
Add table
Reference in a new issue