fix graduation bug

This commit is contained in:
chark1es 2025-02-11 00:54:26 -08:00
parent d423bf73a1
commit f11bc34caf

View file

@ -368,6 +368,13 @@ import { Icon } from "astro-icon/components";
}`,
"success",
);
// Log the check-in
await logger.send(
"check_in",
"events",
`User ${currentUser.name} (${currentUser.graduation_year}) checked in to event ${event.event_name}`,
);
} catch (error: any) {
createToast(error?.message || "Failed to check in to event", "error");
}