There was an error while loading. Please reload this page.
1 parent 2a09fe3 commit 3f02981Copy full SHA for 3f02981
2 files changed
src/components/EventsContext/index.tsx
@@ -28,7 +28,7 @@ export function EventsProvider({ children }: { children: ReactNode }) {
28
setError(null);
29
try {
30
const api = new EventsApi(new Configuration({ basePath: config.apiBaseUrl }));
31
- const data = await api.apiV1EventsGet({ rsvpOnly: true, upcomingOnly: true });
+ const data = await api.apiV1EventsGet({ rsvpOnly: true });
32
setEvents(data);
33
} catch (err) {
34
setError(toApiError(err));
src/components/LoginComponent/index.tsx
@@ -4,10 +4,7 @@ import {
4
Group,
5
PaperProps,
6
Center,
7
- Alert,
8
- Title,
9
} from "@mantine/core";
10
-import { IconLock } from "@tabler/icons-react";
11
import { useSearchParams } from "react-router-dom";
12
13
import { AcmLoginButton } from "./AcmLoginButton.js";
0 commit comments