diff --git a/ui/component/userChannelFollowIntro/view.jsx b/ui/component/userChannelFollowIntro/view.jsx index b558b0a7c..88723f3a1 100644 --- a/ui/component/userChannelFollowIntro/view.jsx +++ b/ui/component/userChannelFollowIntro/view.jsx @@ -28,6 +28,9 @@ function UserChannelFollowIntro(props: Props) { channelIds = PRIMARY_CONTENT.channelIds; } const followingCount = (subscribedChannels && subscribedChannels.length) || 0; + const followingCountIgnoringAutoFollows = (subscribedChannels || []).filter( + (channel) => !channelsToSubscribe.includes(channel.uri) + ).length; // subscribe to lbry useEffect(() => { @@ -74,9 +77,13 @@ function UserChannelFollowIntro(props: Props) {