From 5c9571766a3e19799afb94ea758ebbba6534ea01 Mon Sep 17 00:00:00 2001 From: Sam Keen Date: Fri, 18 Mar 2022 14:54:46 +0000 Subject: [PATCH] Update apps/explorer/src/app/components/seconds-ago/index.tsx Co-authored-by: Dexter Edwards --- apps/explorer/src/app/components/seconds-ago/index.tsx | 5 ----- 1 file changed, 5 deletions(-) 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);