diff options
| author | Fuwn <[email protected]> | 2026-03-01 16:15:37 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-01 16:16:50 -0800 |
| commit | 5e930243be42cb79dc72ee66f12578074e670120 (patch) | |
| tree | b11e4504c9ee66c9ed33217d8339f8e61cabcf57 /src/lib/Data/AniList/activity.ts | |
| parent | chore(biome): enable svelte linting (diff) | |
| download | due.moe-5e930243be42cb79dc72ee66f12578074e670120.tar.xz due.moe-5e930243be42cb79dc72ee66f12578074e670120.zip | |
chore(biome): re-enable noImplicitAnyLet rule
Diffstat (limited to 'src/lib/Data/AniList/activity.ts')
| -rw-r--r-- | src/lib/Data/AniList/activity.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Data/AniList/activity.ts b/src/lib/Data/AniList/activity.ts index afe3cef3..9a8d13ba 100644 --- a/src/lib/Data/AniList/activity.ts +++ b/src/lib/Data/AniList/activity.ts @@ -190,7 +190,7 @@ export const fullActivityHistory = async ( const activities = []; let page = 1; let currentDatabasePage = await database.activities.get(page); - let currentPage; + let currentPage: ActivitiesPage; if (currentDatabasePage) currentPage = currentDatabasePage.data; else { |