diff options
| author | Fuwn <[email protected]> | 2026-01-23 23:52:34 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-23 23:52:34 -0800 |
| commit | bd50f1080fd9075d67ad26ee3021b07b6fea679b (patch) | |
| tree | eda5662938a29b9f95e9ae10a2db11096e811205 /src/lib/Tools/Wrapped | |
| parent | fix(lib): Add missing each block keys for Picker and SequelCatcher/List (diff) | |
| download | due.moe-bd50f1080fd9075d67ad26ee3021b07b6fea679b.tar.xz due.moe-bd50f1080fd9075d67ad26ee3021b07b6fea679b.zip | |
refactor(lib): Migrate 8 additional components to Svelte 5 runes syntax
Diffstat (limited to 'src/lib/Tools/Wrapped')
| -rw-r--r-- | src/lib/Tools/Wrapped/Top/Manga.svelte | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/Tools/Wrapped/Top/Manga.svelte b/src/lib/Tools/Wrapped/Top/Manga.svelte index a36f7724..2de988e3 100644 --- a/src/lib/Tools/Wrapped/Top/Manga.svelte +++ b/src/lib/Tools/Wrapped/Top/Manga.svelte @@ -2,8 +2,7 @@ import type { Media } from '$lib/Data/AniList/media'; import { estimatedDayReading } from '$lib/Media/Manga/time'; - export let mangaList: Media[] | undefined; - export let chapters: number; + let { mangaList, chapters }: { mangaList: Media[] | undefined; chapters: number } = $props(); </script> <div class="category-grid pure-category category top-category"> |