Widen all movie|tv type unions to include music|book across frontend and server

This commit is contained in:
root
2026-04-04 11:50:28 -05:00
parent d8404496b8
commit 6005422cea
14 changed files with 15 additions and 15 deletions

View File

@@ -4,7 +4,7 @@ import { Transition } from '@headlessui/react';
interface IssueModalProps {
show?: boolean;
onCancel: () => void;
mediaType: 'movie' | 'tv';
mediaType: 'movie' | 'tv' | 'music' | 'book';
tmdbId: number;
issueId?: never;
}