diff --git a/js/page/file-list.js b/js/page/file-list.js index 4fc862946..9420ff5f0 100644 --- a/js/page/file-list.js +++ b/js/page/file-list.js @@ -75,6 +75,12 @@ export let FileListPublished = React.createClass({ document.title = "Published Files"; lbry.getMyClaims((claimInfos) => { + if (claimInfos.length == 0) { + this.setState({ + fileInfos: [], + }); + } + /** * Build newFileInfos as a sparse array and drop elements in at the same position they * occur in claimInfos, so the order is preserved even if the API calls inside this loop