From 0be9e55b03f82b6d06f786ad6f6ecdbf2a6bd8fe Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Wed, 19 Jul 2023 18:46:44 +0200 Subject: [PATCH] fix(talks): correct months MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Months are zero-indexed in the ‹Date› constructor… Is this some kind of a joke??? Signed-off-by: Matej Focko --- src/pages/talks.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/talks.tsx b/src/pages/talks.tsx index 5fb6478..0e36f7b 100644 --- a/src/pages/talks.tsx +++ b/src/pages/talks.tsx @@ -20,12 +20,12 @@ const talks: TalkMetadata[] = [ { name: "DevConf.cz", location: "Brno, Czechia", - date: new Date(2023, 6, 17), + date: new Date(2023, 5, 17), }, { name: "DevConf.cz Mini", location: "Brno, Czechia", - date: new Date(2023, 3, 31), + date: new Date(2023, 2, 31), }, ], recordingURL: "https://www.youtube.com/watch?v=FxhXzgxWO18",