From 64279f399fddb35db6e133bb49976e953e3b0e11 Mon Sep 17 00:00:00 2001 From: Antoine Caron Date: Tue, 25 Mar 2025 16:40:31 +0100 Subject: [PATCH 1/2] feat: add meetup 102 event --- data/data-override.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/data/data-override.ts b/data/data-override.ts index b3738c2d..09a3f912 100644 --- a/data/data-override.ts +++ b/data/data-override.ts @@ -17,6 +17,32 @@ import { export const dataOverride: { [key: string]: Partial } = { 'https://www.meetup.com/lyonjs/events/306419959': { sponsor: axopen, + talks: [ + { + title: 'Créez votre application JS en full serverless', + speakers: [ + { + name: 'Louis Noyaret', + socialLink: 'https://www.linkedin.com/in/louis-noyaret-b1b241184/', + }, + { + name: 'Nathan Mittelette', + socialLink: 'https://www.linkedin.com/in/nathan-mittelette/', + }, + ], + videoLink: 'https://www.youtube.com/embed/EdxJYgj7tnU', + }, + { + title: 'La planète en danger, des nouvelles du Front !', + speakers: [ + { + name: 'Sylvain Gougouzian', + socialLink: 'https://www.linkedin.com/in/sylvain-gougouzian/', + }, + ], + videoLink: 'https://www.youtube.com/embed/YaTdmTyXvJM', + }, + ], }, 'https://www.meetup.com/lyonjs/events/304691839': { sponsor: CBTW, From 99b496afdc58630ccdfca0d18b781a96413f3c98 Mon Sep 17 00:00:00 2001 From: Antoine Caron Date: Tue, 25 Mar 2025 17:09:17 +0100 Subject: [PATCH 2/2] fix: iframe --- .oxlintrc.json | 3 ++- modules/event/components/EventDetail.tsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.oxlintrc.json b/.oxlintrc.json index 39321480..eafaf104 100644 --- a/.oxlintrc.json +++ b/.oxlintrc.json @@ -7,7 +7,8 @@ "perf": "error" }, "rules": { - "react-in-jsx-scope": "off" + "react-in-jsx-scope": "off", + "react/iframe-missing-sandbox": "off" }, "settings": { "jsx-a11y": { diff --git a/modules/event/components/EventDetail.tsx b/modules/event/components/EventDetail.tsx index fd74b9e7..af8b952a 100644 --- a/modules/event/components/EventDetail.tsx +++ b/modules/event/components/EventDetail.tsx @@ -31,7 +31,7 @@ export const EventDetail: React.FC = async ({ event }) => { {event.talks .filter((talk) => talk.videoLink) .map((talk) => ( -