From 12f0efbfab635bfa3ec37f2b4c664307f3813591 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Fri, 9 Dec 2022 15:58:11 -0700 Subject: [PATCH] Fix --- web/src/routes/Recording.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/routes/Recording.jsx b/web/src/routes/Recording.jsx index ee862e8bb..a11a26106 100644 --- a/web/src/routes/Recording.jsx +++ b/web/src/routes/Recording.jsx @@ -10,7 +10,6 @@ import useSWR from 'swr'; export default function Recording({ camera, date, hour = '00', minute = '00', second = '00' }) { const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; - //const timezone = 'America/Chicago'; const currentDate = useMemo( () => (date ? parseISO(`${date}T${hour || '00'}:${minute || '00'}:${second || '00'}`) : new Date()), [date, hour, minute, second]