diff --git a/apps/readest-app/src/app/library/page.tsx b/apps/readest-app/src/app/library/page.tsx index 8728e2bb..2b5a2b60 100644 --- a/apps/readest-app/src/app/library/page.tsx +++ b/apps/readest-app/src/app/library/page.tsx @@ -97,34 +97,35 @@ const LibraryPage = () => { onToggleSelectMode={handleToggleSelectMode} /> - {(loading || !libraryLoaded.current) && ( + {loading && (
)} - {libraryBooks.length > 0 ? ( -
- -
- ) : ( -
-
-
-

Your Library

-

- Welcome to your library. You can import your books here and read them anytime. -

- + {libraryLoaded.current && + (libraryBooks.length > 0 ? ( +
+ +
+ ) : ( +
+
+
+

Your Library

+

+ Welcome to your library. You can import your books here and read them anytime. +

+ +
-
- )} + ))}
); };