Skip to content

Commit

Permalink
chore: comment out datascource insertion points
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpomerenke committed Aug 25, 2024
1 parent a632845 commit 75c1b1f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions frontend-nextjs/src/components/EventsTimeline/EventsTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,20 @@ function EventsTimeline({
});
const { today } = useToday();
const dataSourceInsertions: DataSourceInsertionType[] = [
{
date: dateToComparableDateItem(
new Date("2022-01-01T00:00:00.000Z"),
today,
),
name: "ACLED (Armed Conflict Location & Event Data Project)",
},
{
date: dateToComparableDateItem(
new Date("2022-07-01T00:00:00.000Z"),
today,
),
name: "Press Releases by Last Generation",
},
// {
// date: dateToComparableDateItem(
// new Date("2022-01-01T00:00:00.000Z"),
// today,
// ),
// name: "ACLED (Armed Conflict Location & Event Data Project)",
// },
// {
// date: dateToComparableDateItem(
// new Date("2022-07-01T00:00:00.000Z"),
// today,
// ),
// name: "Press Releases by Last Generation",
// },
];
if (eventsByOrgs.length === 0) return <EmptyEventsTimeline />;

Expand Down

0 comments on commit 75c1b1f

Please sign in to comment.