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/AniList | |
| 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/AniList')
| -rw-r--r-- | src/lib/AniList/media.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/AniList/media.ts b/src/lib/AniList/media.ts index 3b3c42e3..05f18363 100644 --- a/src/lib/AniList/media.ts +++ b/src/lib/AniList/media.ts @@ -1,9 +1,9 @@ import type { AniListAuthorisation } from '$lib/AniList/identity'; import type { UserIdentity } from './identity'; -import anime from '../../stores/anime'; -import manga from '../../stores/manga'; -import settings from '../../stores/settings'; -import lastPruneTimes from '../../stores/lastPruneTimes'; +import anime from '$stores/anime'; +import manga from '$stores/manga'; +import settings from '$stores/settings'; +import lastPruneTimes from '$stores/lastPruneTimes'; export enum Type { Anime, |