fix merge

This commit is contained in:
p2405951
2026-01-13 12:19:54 +01:00
parent 46d6a8ab60
commit 2beb998c50
3 changed files with 17 additions and 7 deletions
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from "react";
import styles from "./IncompleteEvent.module.css";
import getAllEvents from "../../utils/event/getAllEvents";
import getAllEvents from "../../utils/events/getAllEvents";
function IncompleteEvent() {
const [events, setEvents] = useState([]);
+1 -1
View File
@@ -3,7 +3,7 @@ import { Doughnut } from "react-chartjs-2";
import { Chart, ArcElement } from "chart.js";
import { MenuItem, Select, FormControl } from "@mui/material";
import styles from "./ParticipationChart.module.css";
import getAllEvents from "../../utils/event/getAllEvents";
import getAllEvents from "../../utils/events/getAllEvents";
Chart.register(ArcElement);