diff options
| author | Fuwn <[email protected]> | 2023-12-31 12:36:30 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-31 12:36:30 -0800 |
| commit | 5551e78e0d3c328165fbd7d0f3d249f9c65af048 (patch) | |
| tree | 270aa86ce0e3f923283320c4bfcd3cdbe57e25c7 /src/lib/List/Anime/UpcomingAnimeList.svelte | |
| parent | fix(time): remove timezone offset multiplier (diff) | |
| download | due.moe-5551e78e0d3c328165fbd7d0f3d249f9c65af048.tar.xz due.moe-5551e78e0d3c328165fbd7d0f3d249f9c65af048.zip | |
chore(svelte): alias stores
Diffstat (limited to 'src/lib/List/Anime/UpcomingAnimeList.svelte')
| -rw-r--r-- | src/lib/List/Anime/UpcomingAnimeList.svelte | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/List/Anime/UpcomingAnimeList.svelte b/src/lib/List/Anime/UpcomingAnimeList.svelte index 407f7074..46a42e1d 100644 --- a/src/lib/List/Anime/UpcomingAnimeList.svelte +++ b/src/lib/List/Anime/UpcomingAnimeList.svelte @@ -2,10 +2,10 @@ import { mediaListCollection, Type, type Media } from '$lib/AniList/media'; import type { UserIdentity, AniListAuthorisation } from '$lib/AniList/identity'; import { onMount } from 'svelte'; - import anime from '../../../stores/anime'; - import lastPruneTimes from '../../../stores/lastPruneTimes'; + import anime from '$stores/anime'; + import lastPruneTimes from '$stores/lastPruneTimes'; import AnimeList from './AnimeListTemplate.svelte'; - import settings from '../../../stores/settings'; + import settings from '$stores/settings'; import type { SubsPlease } from '$lib/Media/Anime/Airing/Subtitled/subsPlease'; export let user: AniListAuthorisation; |