From 080365b90342fbdf802945ca29d385ea9fe79822 Mon Sep 17 00:00:00 2001 From: Becca Elenzil Date: Wed, 18 May 2022 13:41:46 -0700 Subject: [PATCH] remove console.log from timestamp --- src/components/Timestamp.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/Timestamp.js b/src/components/Timestamp.js index 03054fe3..51232778 100644 --- a/src/components/Timestamp.js +++ b/src/components/Timestamp.js @@ -1,8 +1,6 @@ import { DateTime } from 'luxon'; const TimeStamp = (props) => { - console.log(props); - const time = DateTime.fromISO(props.time); const absolute = time.toFormat('MMMM Do YYYY, h:mm:ss a'); const relative = time.toRelative();