fix lists empty on channel page

This commit is contained in:
zeppi 2021-06-16 12:27:16 -04:00
parent aa6c7c52a9
commit 48bc887b1f

View file

@ -125,7 +125,7 @@ function ChannelPage(props: Props) {
<section className="main--empty">{__('You have no lists! Create one from any playable content.')}</section>
);
} else {
collectionEmpty = <section className="main--empty">{__('You have unpublished lists')}</section>;
collectionEmpty = <section className="main--empty">{__('No Lists Found')}</section>;
}
let channelIsBlackListed = false;