diff options
| author | Fuwn <[email protected]> | 2026-03-28 09:04:14 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-28 09:04:14 +0000 |
| commit | ebd08256f7c4b754e75eab02c110b689278e197f (patch) | |
| tree | d6a198ebeef943f58cf109ab7721a5a4b9769552 /src/stores | |
| parent | fix(state): restore persisted list UI state (diff) | |
| download | due.moe-ebd08256f7c4b754e75eab02c110b689278e197f.tar.xz due.moe-ebd08256f7c4b754e75eab02c110b689278e197f.zip | |
fix(anilist): restore completed list query semantics
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/anime.ts | 2 | ||||
| -rw-r--r-- | src/stores/manga.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/anime.ts b/src/stores/anime.ts index 0ab4513d..a82bfa55 100644 --- a/src/stores/anime.ts +++ b/src/stores/anime.ts @@ -1,5 +1,5 @@ import { persistentStore } from "$lib/Utility/persistentStore"; -const anime = persistentStore<string>("anime", ""); +const anime = persistentStore<string>("anime:v3", ""); export default anime; diff --git a/src/stores/manga.ts b/src/stores/manga.ts index e6637258..1d36e0e9 100644 --- a/src/stores/manga.ts +++ b/src/stores/manga.ts @@ -1,5 +1,5 @@ import { persistentStore } from "$lib/Utility/persistentStore"; -const manga = persistentStore<string>("manga", ""); +const manga = persistentStore<string>("manga:v3", ""); export default manga; |