mirror of
https://github.com/mfocko/blog.git
synced 2024-11-10 00:09:07 +01:00
fix(talks): correct months
Months are zero-indexed in the ‹Date› constructor… Is this some kind of a joke??? Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
6d2fbe704a
commit
0be9e55b03
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue