Append UTC to last updated timestamp

This commit is contained in:
Aman Varshney
2025-05-30 02:21:34 +05:30
parent 530825b80f
commit 697c86a624

View File

@@ -823,7 +823,11 @@ export default function AnalyticsPage() {
<span className="text-primary">$</span>
<span className="font-mono text-muted-foreground">
# Last updated:{" "}
{loadingLastUpdated ? "CHECKING..." : lastUpdated || "UNKNOWN"}
{loadingLastUpdated
? "CHECKING..."
: lastUpdated
? `${lastUpdated} UTC`
: "UNKNOWN"}
</span>
</div>
</div>