diff --git a/frontend/src/pages/BookGalleryPage/bookGalleryPage/BookGalleryPage.tsx b/frontend/src/pages/BookGalleryPage/bookGalleryPage/BookGalleryPage.tsx index f44e1e2..e97603e 100644 --- a/frontend/src/pages/BookGalleryPage/bookGalleryPage/BookGalleryPage.tsx +++ b/frontend/src/pages/BookGalleryPage/bookGalleryPage/BookGalleryPage.tsx @@ -65,11 +65,17 @@ export default function BookGalleryPage({filteredBooks, setSearchInput}: BookGal } -

{filteredBooksByGenreAndStatus.length} books

+

+ { + filteredBooksByGenreAndStatus.length == 1 + ? filteredBooksByGenreAndStatus.length + " book" + : filteredBooksByGenreAndStatus.length + " books" + } +

{ filteredBooksByGenreAndStatus.length > 0 ? - :

No Books found

+ :

No Books found

}