From c99fc76088470d2d71241019ad367874455e7105 Mon Sep 17 00:00:00 2001 From: Adebanjo Date: Sun, 7 Jun 2026 22:37:43 +0100 Subject: [PATCH] fix: activity feed timestamp (created_at is unix seconds, not ms) --- frontend/src/pages/app/StreamDetail.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/app/StreamDetail.jsx b/frontend/src/pages/app/StreamDetail.jsx index 74d2cbb..1555fa3 100644 --- a/frontend/src/pages/app/StreamDetail.jsx +++ b/frontend/src/pages/app/StreamDetail.jsx @@ -854,7 +854,7 @@ export default function StreamDetail() { ? BLOCKSCOUT_TX[ext.chain_id](ext.tx_hash) : null; const ts = ext.created_at - ? new Date(ext.created_at).toLocaleString(undefined, { month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' }) + ? new Date(ext.created_at * 1000).toLocaleString(undefined, { month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' }) : null; return (