From ebd08256f7c4b754e75eab02c110b689278e197f Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 28 Mar 2026 09:04:14 +0000 Subject: fix(anilist): restore completed list query semantics --- src/stores/anime.ts | 2 +- src/stores/manga.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stores') 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("anime", ""); +const anime = persistentStore("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("manga", ""); +const manga = persistentStore("manga:v3", ""); export default manga; -- cgit v1.2.3