From 8cbf5cb20c68844392fd9af77df6b546a60bf1ea Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Thu, 19 Mar 2026 20:37:09 -0400 Subject: [PATCH] feat(frontend): update TypeScript types for AniList genres support Update the AniListCurrentUserWatchListType TypeScript interface to include the genres field as a string array, matching the updated backend Go type definition. This ensures type safety and proper IDE autocomplete when working with genre data in the frontend. --- frontend/src/anilist/types/AniListCurrentUserWatchListType.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/anilist/types/AniListCurrentUserWatchListType.ts b/frontend/src/anilist/types/AniListCurrentUserWatchListType.ts index 25ad6f5..96dce9e 100644 --- a/frontend/src/anilist/types/AniListCurrentUserWatchListType.ts +++ b/frontend/src/anilist/types/AniListCurrentUserWatchListType.ts @@ -44,6 +44,7 @@ export interface MediaList { timeUntilAiring: number; episode: number; }; + genres: string[]; tags: [ { id: number;