Skip to content

Commit

Permalink
chore: removed embarquement and atelier from events (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasCharrier authored Nov 13, 2024
1 parent bfd1786 commit 845e0f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/EventsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ export function EventsList({ events }: { events: CalendarResponse }) {
.filter(
([key, event]) =>
event.type === "VEVENT" &&
!event.summary.toLowerCase().includes("formation")
(!event.summary.toLowerCase().includes("formation") ||
!event.summary.toLowerCase().includes("atelier") ||
!event.summary.toLowerCase().includes("embarquement"))
)
.sort(
([key1, event1], [key2, event2]) =>
Expand Down

0 comments on commit 845e0f8

Please sign in to comment.