Skip to content

Commit f89c24e

Browse files
committed
Use UTC instead of locale string
1 parent bcc067c commit f89c24e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/web/src/app/stats.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,7 @@ export function Stats(props: StatsProps) {
132132
<h2>Results</h2>
133133
<p>
134134
{currentTimestamp ? (
135-
<small>
136-
As of {new Date(currentTimestamp).toLocaleTimeString()}
137-
</small>
135+
<small>As of {new Date(currentTimestamp).toUTCString()}</small>
138136
) : (
139137
"-"
140138
)}

0 commit comments

Comments
 (0)