We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30bb5e6 commit 57590efCopy full SHA for 57590ef
src/components/UpcomingEventsList.tsx
@@ -11,7 +11,7 @@ import InlineLink from "@/components/Link"
11
12
import { trackCustomEvent } from "@/lib/utils/matomo"
13
14
-import communityConferences from "@/data/community-events"
+import communityEvents from "@/data/community-events.json"
15
16
type OrderedUpcomingEvent = CommunityConference & {
17
date: string
@@ -37,7 +37,7 @@ const UpcomingEventsList = () => {
37
}
38
39
useEffect(() => {
40
- const eventsList: CommunityConference[] = [...communityConferences]
+ const eventsList = communityEvents as CommunityConference[]
41
const yesterday = new Date()
42
yesterday.setDate(yesterday.getDate() - 1)
43
0 commit comments