From b83fe995c5d09a670e43ff7a14eaacd740656a81 Mon Sep 17 00:00:00 2001 From: jessopb <36554050+jessopb@users.noreply.github.com> Date: Mon, 13 Sep 2021 12:48:17 -0400 Subject: [PATCH] fix recommended follows (#7081) --- ui/component/userChannelFollowIntro/view.jsx | 2 +- ui/page/channelsFollowingDiscover/view.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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