diff --git a/apps/explorer/src/app/components/seconds-ago/index.tsx b/apps/explorer/src/app/components/seconds-ago/index.tsx index 2a0fc7639..965fd6024 100644 --- a/apps/explorer/src/app/components/seconds-ago/index.tsx +++ b/apps/explorer/src/app/components/seconds-ago/index.tsx @@ -18,11 +18,6 @@ export const SecondsAgo = ({ date, ...props }: SecondsAgoProps) => { return <>Date unknown; } - console.log( - `now: ${now}, before: ${new Date( - date - ).getTime()}, date getting passed in: ${date}` - ); const timeAgoInSeconds = Math.floor((now - new Date(date).getTime()) / 1000);