diff --git a/src/app/components/book-tile/book-tile.js b/src/app/components/book-tile/book-tile.js index 94f22389b..23ccca732 100644 --- a/src/app/components/book-tile/book-tile.js +++ b/src/app/components/book-tile/book-tile.js @@ -150,7 +150,7 @@ function useBookInfo(id) { } export default function BookTile({ book: [book] }) { - const { coverUrl, title, slug } = book; + const { coverUrl, title, slug, bookState } = book; const info = useBookInfo(book.id); const comingSoon = info?.book_state === 'coming_soon'; const assignable = info?.assignable_book === true; @@ -165,7 +165,13 @@ export default function BookTile({ book: [book] }) {
-