From 9ae7b2e5922a4fe5a548208e729849df8baa59a3 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Sun, 4 Jun 2023 01:03:45 +0200 Subject: [PATCH] Remove console log (#327) The 2nd time this happens... AINTNOWAY --- src/components/manga/hooks.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/manga/hooks.ts b/src/components/manga/hooks.ts index fe0edd79..30657cc9 100644 --- a/src/components/manga/hooks.ts +++ b/src/components/manga/hooks.ts @@ -17,7 +17,6 @@ export const useRefreshManga = (mangaId: string) => { setFetchingOnline(true); await Promise.all([ requestManager.getManga(mangaId, true).response.then((res) => { - console.log('manga', res); mutate(`${RequestManager.API_VERSION}manga/${mangaId}`, res, { revalidate: false }); }), requestManager.getMangaChapters(mangaId, true).response.then((res) =>