diff --git a/ui/component/userChannelFollowIntro/view.jsx b/ui/component/userChannelFollowIntro/view.jsx index 671ff41bc..69f0ad458 100644 --- a/ui/component/userChannelFollowIntro/view.jsx +++ b/ui/component/userChannelFollowIntro/view.jsx @@ -25,12 +25,14 @@ function UserChannelFollowIntro(props: Props) { // subscribe to lbry useEffect(() => { - channelsToSubscribe.forEach(c => - channelSubscribe({ - channelName: parseURI(c).claimName, - uri: c, - }) - ); + if (channelsToSubscribe && channelsToSubscribe.length) { + channelsToSubscribe.forEach(c => + channelSubscribe({ + channelName: parseURI(c).claimName, + uri: c, + }) + ); + } }, []); return (