Skip to content

Commit

Permalink
remove some console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Robonau authored and Robonau committed Jul 4, 2024
1 parent 4a334f2 commit 910d50c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/routes/(app)/manga/[MangaID]/(manga)/chaptersSide.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
(ee) => ee.chapter.id === e.chapter.id
)
);
console.log(filtered);
if ((filtered?.length ?? 0) > 2) {
client
.query(getManga, { id: MangaID }, { requestPolicy: 'network-only' })
Expand All @@ -77,7 +76,6 @@
const existingDownload = $downloads?.data?.downloadChanged.queue.find(
(e) => e.chapter.id === element.chapter.id
);
console.log(element.chapter, existingDownload);
if (!existingDownload) {
client
.query(
Expand Down

0 comments on commit 910d50c

Please sign in to comment.