We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cae7c6 commit 3324721Copy full SHA for 3324721
1 file changed
freebuff/web/src/app/live/live-client.tsx
@@ -65,10 +65,12 @@ function countryName(code: string): string {
65
}
66
67
function formattedTime(iso: string): string {
68
- return new Intl.DateTimeFormat(undefined, {
+ return new Intl.DateTimeFormat('en-US', {
69
hour: 'numeric',
70
minute: '2-digit',
71
second: '2-digit',
72
+ timeZone: 'UTC',
73
+ timeZoneName: 'short',
74
}).format(new Date(iso))
75
76
0 commit comments