Merge branch 'birthday-utc' into 'develop'

Format birthday as UTC, fixes #821

Closes #821

See merge request soapbox-pub/soapbox-fe!1023
improve-ci
Alex Gleason 2022-02-01 02:32:21 +00:00
commit 8134d27c10
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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();