diff options
| author | Fuwn <[email protected]> | 2023-09-29 17:11:41 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-29 17:11:41 -0700 |
| commit | f1767b68b0c4bc3d8e2d5e890bf742c910582551 (patch) | |
| tree | edab1edb7244ef3767782d78b798e1b0ef4e43af /src/routes/+page.svelte | |
| parent | fix(wrapped): use ellipsis character (diff) | |
| download | due.moe-f1767b68b0c4bc3d8e2d5e890bf742c910582551.tar.xz due.moe-f1767b68b0c4bc3d8e2d5e890bf742c910582551.zip | |
feat(completed) add manga, move anime
Diffstat (limited to 'src/routes/+page.svelte')
| -rw-r--r-- | src/routes/+page.svelte | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 2d4fed88..9204eb1f 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -6,7 +6,6 @@ import UpcomingAnimeList from '$lib/List/UpcomingAnimeList.svelte'; import userIdentity from '../stores/userIdentity'; import settings from '../stores/settings'; - import WatchingAnimeList from '$lib/List/WatchingAnimeList.svelte'; import { lastActivityDate } from '$lib/AniList/activity'; import ListTitle from '$lib/List/ListTitle.svelte'; @@ -116,18 +115,6 @@ <ul><li>Loading ...</li></ul> {/if} </details> - - {#if $settings.showCompletedAnime} - <details open={!$settings.closeAnimeByDefault} class="list"> - {#if currentUserIdentity.id != -1} - <WatchingAnimeList user={data.user} identity={currentUserIdentity} /> - {:else} - <ListTitle custom="Completed Anime" /> - - <ul><li>Loading ...</li></ul> - {/if} - </details> - {/if} {/if} </div> |