Merge branch 'birthday-utc' into 'develop'

Format birthday as UTC, fixes #821

Closes #821

See merge request soapbox-pub/soapbox-fe!1023
This commit is contained in:
Alex Gleason 2022-02-01 02:32:21 +00:00
commit 8134d27c10
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class ProfileInfoPanel extends ImmutablePureComponent {
const birthday = account.getIn(['pleroma', 'birthday']);
if (!birthday) return null;
const formattedBirthday = intl.formatDate(birthday, { day: 'numeric', month: 'long', year: 'numeric' });
const formattedBirthday = intl.formatDate(birthday, { timeZone: 'UTC', day: 'numeric', month: 'long', year: 'numeric' });
const date = new Date(birthday);
const today = new Date();