diff --git a/ui/component/userChannelFollowIntro/view.jsx b/ui/component/userChannelFollowIntro/view.jsx index 88723f3a1..59833ffe3 100644 --- a/ui/component/userChannelFollowIntro/view.jsx +++ b/ui/component/userChannelFollowIntro/view.jsx @@ -25,7 +25,7 @@ function UserChannelFollowIntro(props: Props) { const { PRIMARY_CONTENT } = homepageData; let channelIds; if (PRIMARY_CONTENT && CUSTOM_HOMEPAGE) { - channelIds = PRIMARY_CONTENT.channelIds; + channelIds = PRIMARY_CONTENT.ids; } const followingCount = (subscribedChannels && subscribedChannels.length) || 0; const followingCountIgnoringAutoFollows = (subscribedChannels || []).filter( diff --git a/ui/page/channelsFollowingDiscover/view.jsx b/ui/page/channelsFollowingDiscover/view.jsx index a89737530..09a60d0a0 100644 --- a/ui/page/channelsFollowingDiscover/view.jsx +++ b/ui/page/channelsFollowingDiscover/view.jsx @@ -31,7 +31,7 @@ function ChannelsFollowingDiscover(props: Props) { const { PRIMARY_CONTENT } = homepageData; let channelIds; if (PRIMARY_CONTENT && CUSTOM_HOMEPAGE) { - channelIds = PRIMARY_CONTENT.channelIds; + channelIds = PRIMARY_CONTENT.ids; } let rowData: Array = []; const notChannels = subscribedChannels