diff --git a/server/interfaces/api/blocklistInterfaces.ts b/server/interfaces/api/blocklistInterfaces.ts index 58e3ebe4..85341b69 100644 --- a/server/interfaces/api/blocklistInterfaces.ts +++ b/server/interfaces/api/blocklistInterfaces.ts @@ -3,7 +3,7 @@ import type { PaginatedResponse } from '@server/interfaces/api/common'; export interface BlocklistItem { tmdbId: number; - mediaType: 'movie' | 'tv'; + mediaType: 'movie' | 'tv' | 'music' | 'book'; title?: string; createdAt?: Date; user?: User; diff --git a/src/components/RequestList/index.tsx b/src/components/RequestList/index.tsx index a5e21f23..3892f0c0 100644 --- a/src/components/RequestList/index.tsx +++ b/src/components/RequestList/index.tsx @@ -51,7 +51,7 @@ type Sort = 'added' | 'modified'; type SortDirection = 'asc' | 'desc'; -type MediaType = 'all' | 'movie' | 'tv'; +type MediaType = 'all' | 'movie' | 'tv' | 'music' | 'book'; const RequestList = () => { const router = useRouter();