fix(ui): air date will use UTC for timezone (#3297)

This commit is contained in:
Brandon Cohen
2023-01-29 02:43:54 -05:00
committed by GitHub
parent 7040da1334
commit 3e43586acc
4 changed files with 8 additions and 0 deletions

View File

@@ -91,11 +91,13 @@ const PersonDetails = () => {
year: 'numeric',
month: 'long',
day: 'numeric',
timeZone: 'UTC',
}),
deathdate: intl.formatDate(data.deathday, {
year: 'numeric',
month: 'long',
day: 'numeric',
timeZone: 'UTC',
}),
})
);
@@ -106,6 +108,7 @@ const PersonDetails = () => {
year: 'numeric',
month: 'long',
day: 'numeric',
timeZone: 'UTC',
}),
})
);