diff --git a/src/screens/Updates.tsx b/src/screens/Updates.tsx index 55daaa2d3b..fcbb58534a 100644 --- a/src/screens/Updates.tsx +++ b/src/screens/Updates.tsx @@ -140,10 +140,6 @@ const Updates: React.FC = () => { setAction(null); }, [t]); - if (!isLoading && updateEntries.length === 0) { - return ; - } - const downloadForChapter = (chapter: IChapter) => { const { index, mangaId } = chapter; return queue.find((q) => index === q.chapterIndex && mangaId === q.mangaId); @@ -161,6 +157,10 @@ const Updates: React.FC = () => { setPages(loadedPages + 1); }, [hasNextPage, loadedPages]); + if (!isLoading && updateEntries.length === 0) { + return ; + } + return (