Skip to content

Commit 697c86a

Browse files
Append UTC to last updated timestamp
1 parent 530825b commit 697c86a

File tree

1 file changed

+5
-1
lines changed
  • apps/web/src/app/(home)/analytics

1 file changed

+5
-1
lines changed

apps/web/src/app/(home)/analytics/page.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,11 @@ export default function AnalyticsPage() {
823823
<span className="text-primary">$</span>
824824
<span className="font-mono text-muted-foreground">
825825
# Last updated:{" "}
826-
{loadingLastUpdated ? "CHECKING..." : lastUpdated || "UNKNOWN"}
826+
{loadingLastUpdated
827+
? "CHECKING..."
828+
: lastUpdated
829+
? `${lastUpdated} UTC`
830+
: "UNKNOWN"}
827831
</span>
828832
</div>
829833
</div>

0 commit comments

Comments
 (0)