fix: fetch localized person details from TMDb (#1243)

* fix: fetch localized person details from TMDb

* feat: include DOB, hometown, and alternate names on person detail pages

* fix: remove unnecessary ternary operator

* fix(ui): don't display AKA when empty
This commit is contained in:
TheCatLady
2021-03-22 04:17:24 -04:00
committed by GitHub
parent aee43cecfd
commit 1d7a938ef8
4 changed files with 86 additions and 28 deletions

View File

@@ -306,6 +306,7 @@ export interface TmdbKeyword {
export interface TmdbPersonDetail {
id: number;
name: string;
birthday: string;
deathday: string;
known_for_department: string;
also_known_as?: string[];