TimeRangePicker: Show UTC+00:00 instead of just UTC (#84395)

This commit is contained in:
Laura Fernández 2024-03-14 13:06:34 +01:00 committed by GitHub
parent ec5e18cd93
commit 38a8bf10f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,9 +33,6 @@ export const formatUtcOffset = (timestamp: number, timeZone: TimeZone): string =
format: 'Z',
});
if (offset === '+00:00') {
return 'UTC';
}
return `UTC${offset}`;
};