diff --git a/src/components/organisms/passageNavigation/index.tsx b/src/components/organisms/passageNavigation/index.tsx index 1c37dc76b..01627c914 100644 --- a/src/components/organisms/passageNavigation/index.tsx +++ b/src/components/organisms/passageNavigation/index.tsx @@ -156,7 +156,9 @@ export default function PassageNavigation({ <> - BIBLE_BOOKS.slice(0, 39).includes(book.title), + BIBLE_BOOKS.slice(0, 39).find( + (b) => b.toLowerCase() === book.title.toLowerCase(), + ), )} selectedBook={book} selectBook={setBook} @@ -165,7 +167,9 @@ export default function PassageNavigation({ - BIBLE_BOOKS.slice(39).includes(book.title), + BIBLE_BOOKS.slice(39).find( + (b) => b.toLowerCase() === book.title.toLowerCase(), + ), )} selectedBook={book} selectBook={setBook}