This reverts commit b83fe995c5
.
This commit is contained in:
parent
1e002ac585
commit
20bd9644e9
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ function UserChannelFollowIntro(props: Props) {
|
|||
const { PRIMARY_CONTENT } = homepageData;
|
||||
let channelIds;
|
||||
if (PRIMARY_CONTENT && CUSTOM_HOMEPAGE) {
|
||||
channelIds = PRIMARY_CONTENT.ids;
|
||||
channelIds = PRIMARY_CONTENT.channelIds;
|
||||
}
|
||||
const followingCount = (subscribedChannels && subscribedChannels.length) || 0;
|
||||
const followingCountIgnoringAutoFollows = (subscribedChannels || []).filter(
|
||||
|
|
|
@ -31,7 +31,7 @@ function ChannelsFollowingDiscover(props: Props) {
|
|||
const { PRIMARY_CONTENT } = homepageData;
|
||||
let channelIds;
|
||||
if (PRIMARY_CONTENT && CUSTOM_HOMEPAGE) {
|
||||
channelIds = PRIMARY_CONTENT.ids;
|
||||
channelIds = PRIMARY_CONTENT.channelIds;
|
||||
}
|
||||
let rowData: Array<ChannelsFollowingItem> = [];
|
||||
const notChannels = subscribedChannels
|
||||
|
|
Loading…
Reference in a new issue