Skip to content

Commit

Permalink
fix: no explicit any
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemarcoli committed Jul 22, 2024
1 parent e7b46f9 commit 5bf2e2b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/routes/summary/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
$: end = start + perPage;
$: incompleteItems = data.incompleteItems.incomplete_items
.slice(start, end)
// eslint-disable-next-line @typescript-eslint/no-explicit-any
.filter((item: any) => ['Movie', 'Show'].includes(item.type));
$: totalIncompleteItems = incompleteItems.length;
</script>
Expand Down

0 comments on commit 5bf2e2b

Please sign in to comment.