import {EpisodeCredit, PersonCredit} from '@app/titles/models/title'; import {Trans} from '@common/i18n/trans'; interface Props { credit: PersonCredit | EpisodeCredit; className?: string; } export function CharacterOrJob({credit, className}: Props) { return (
{credit.pivot?.department === 'actors' ? ( credit.pivot?.character ?? ) : ( {credit.pivot?.job ? ( ) : ( )} )}
); }