diff options
| author | Fuwn <[email protected]> | 2024-02-18 06:15:59 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-18 06:15:59 -0800 |
| commit | f9616d34b5bf4bda196ed18730832d95e04947a4 (patch) | |
| tree | b61089184c07187c927f54824e347be730fc6553 /src/routes/hololive | |
| parent | feat(stream): avatars (diff) | |
| download | due.moe-f9616d34b5bf4bda196ed18730832d95e04947a4.tar.xz due.moe-f9616d34b5bf4bda196ed18730832d95e04947a4.zip | |
feat(user): hololive badges
Diffstat (limited to 'src/routes/hololive')
| -rw-r--r-- | src/routes/hololive/+page.svelte | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/routes/hololive/+page.svelte b/src/routes/hololive/+page.svelte index 866fc105..109fbc42 100644 --- a/src/routes/hololive/+page.svelte +++ b/src/routes/hololive/+page.svelte @@ -9,7 +9,7 @@ import root from '$lib/Utility/root'; import identity from '$stores/identity'; import Lives from '$lib/Hololive/Lives.svelte'; - import type { ParseResult } from '$lib/Hololive/hololive'; + import { typeSchedule } from '$lib/Hololive/hololive'; let schedulePromise: Promise<Response>; let pinnedStreams: string[] = []; @@ -43,8 +43,6 @@ setSchedule(); }; - - const typeSchedule = (schedule: any) => schedule as ParseResult; </script> <HeadTitle route="hololive Schedule" path="/hololive" /> |