Chapters
-
+ {session?.user?.accessToken ? (
+
+ ) : null}
{chapters?.length !== 0 ? (
diff --git a/src/app/(main)/manga/page.tsx b/src/app/(main)/manga/page.tsx
index b52f746..2aad957 100644
--- a/src/app/(main)/manga/page.tsx
+++ b/src/app/(main)/manga/page.tsx
@@ -64,7 +64,7 @@ function MangaPage() {
const handleClear = () => {
setValue('title', '');
- setValue('genre', undefined);
+ setValue('genre', '');
setValue('rating', 0);
fetchManga().then((data) => setManga(data));
@@ -144,8 +144,9 @@ function MangaPage() {