Run autofix

This commit is contained in:
Luke Vella 2024-10-13 10:59:15 +01:00
parent cfb9ec8e8a
commit 1a5b2f206d
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
20 changed files with 132 additions and 141 deletions

View file

@ -224,9 +224,8 @@ export const DayjsProvider: React.FunctionComponent<{
(date: dayjs.ConfigType, localTime = false) => {
if (!localTime) {
return dayjs(date).tz(preferredTimeZone);
} else {
return dayjs(date).utc();
}
return dayjs(date).utc();
},
[preferredTimeZone],
);