diff --git a/webUI/react/src/components/MangaDetails.tsx b/webUI/react/src/components/MangaDetails.tsx index 867b9fad..ec43702b 100644 --- a/webUI/react/src/components/MangaDetails.tsx +++ b/webUI/react/src/components/MangaDetails.tsx @@ -135,6 +135,9 @@ export default function MangaDetails(props: IProps) { const { setAction } = useContext(NavbarContext); const { manga } = props; + if (manga.genre == null) { + manga.genre = ''; + } const [inLibrary, setInLibrary] = useState( manga.inLibrary ? 'In Library' : 'Add To Library', );