Skip to content

Commit 2a89eb2

Browse files
committed
Fix a few remaining wrong dates
1 parent 2b89266 commit 2a89eb2

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/app/(main)/community/events/events.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ export const events: Event[] = [
4242
{
4343
name: "WG Day 2026",
4444
slug: "wg-day-2026",
45-
location: "Menlo Park, California",
46-
date: "2026-05-08T16:30:00+00:00",
45+
location: "Fremont, California",
46+
date: "2026-05-21T16:30:00+00:00",
4747
eventLink: "/conf/2026/wg-day",
4848
host: "GraphQL Foundation",
4949
},
@@ -59,8 +59,8 @@ export const events: Event[] = [
5959
{
6060
name: "GraphQLConf 2026",
6161
slug: "graphql-conf-2026",
62-
location: "Menlo Park, California",
63-
date: "2026-05-06T16:00:00+00:00",
62+
location: "Fremont, California",
63+
date: "2026-05-19T16:00:00+00:00",
6464
eventLink: "/conf/2026",
6565
host: "GraphQL Foundation",
6666
},

src/app/conf/2026/schedule/_components/use-current-time-marker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { useEffect, useState } from "react"
22
import { format } from "date-fns"
33

4-
const CONFERENCE_START = new Date("2026-05-06T00:00:00")
5-
const CONFERENCE_END = new Date("2026-05-07T23:59:59")
4+
const CONFERENCE_START = new Date("2026-05-19T00:00:00")
5+
const CONFERENCE_END = new Date("2026-05-20T23:59:59")
66

77
export function useCurrentTimeMarker() {
88
const [now, setNow] = useState<Date>(new Date())

0 commit comments

Comments
 (0)